Enable NPAPI by default, trump Chromium's default
authorPaul Betts <paul@paulbetts.org>
Fri, 1 May 2015 23:40:21 +0000 (16:40 -0700)
committerPaul Betts <paul@paulbetts.org>
Fri, 1 May 2015 23:59:40 +0000 (16:59 -0700)
atom/browser/lib/init.coffee

index fcff0d8..cbee136 100644 (file)
@@ -81,6 +81,9 @@ if packageJson.desktopName?
 else
   app.setDesktopName "#{app.getName()}.desktop"
 
+# Chrome 42 disables NPAPI plugins by default, reenable them here
+app.commandLine.appendSwitch 'enable-npapi'
+
 # Set the user path according to application's name.
 app.setPath 'userData', path.join(app.getPath('appData'), app.getName())
 app.setPath 'userCache', path.join(app.getPath('cache'), app.getName())