Posted on 04-29-2015 08:47 AM
We have a number of applications that still require plugins for Chrome (Java, among others) and would like to have them turned on by default. This is possible by going to chrome://flags and enabling NPAPI plugins, but it would be nice to have a way to push this out to clients.
Posted on 04-29-2015 08:58 AM
This might help - but it's only buying you until September when that's no longer an option. We're going the route of telling users to use Safari if their plugins aren't working because they'll have to do that come September anyway (unless you don't upgrade Chrome).
Posted on 04-30-2015 05:58 AM
Fix for Macs (Takes care of Java and Citrix):
Save this to /Library/Preferences/com.google.Chrome.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>EnabledPlugins</key>
<array>
<string>Java</string>
<string>Citrix</string>
</array>
</dict>
</plist>