Daniel X Moore
Daniel X Moore

Reputation: 15060

Packaging an NPAPI Plugin for Chrome using FireBreath

I'm trying to package a plugin created with FireBreath as a Chrome extension. I've read on Chrome Extensions and NPAPI that the way to do that is to include the files in the manifest like so:

"plugins": [
   { "path": "plugin-windows.dll" },
   { "path": "plugin-linux.so" },
   { "path": "plugin-mac.so" }
]

FireBreath compiles the .dll and Linux .so files just fine, but on OS X I get a .plugin file. How do I get the mac.so out of the .plugin file or is there some other way I should package my plugin for Chrome on OS X?

Upvotes: 2

Views: 1138

Answers (1)

Mohamed Mansour
Mohamed Mansour

Reputation: 40169

Sorry, I made a mistake in that post (updating it). For Mac you place the .plugin file so it should be:

{ "path":  "plugin-mac.plugin" }

Upvotes: 2

Related Questions