使用 FireBreath 打包适用于 Chrome 的 NPAPI 插件
我正在尝试将使用 FireBreath 创建的插件打包为 Chrome 扩展。我在 Chrome 扩展程序和 NPAPI 上读到,执行此操作的方法是包含清单中的文件如下所示:
"plugins": [
{ "path": "plugin-windows.dll" },
{ "path": "plugin-linux.so" },
{ "path": "plugin-mac.so" }
]
FireBreath 可以很好地编译 .dll 和 Linux .so 文件,但在 OS XI 上会得到 .plugin 文件。如何从 .plugin 文件中获取 mac.so 或者是否有其他方法可以在 OS X 上打包适用于 Chrome 的插件?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
抱歉,我在那篇文章中犯了一个错误(正在更新)。对于 Mac,您放置 .plugin 文件,因此它应该是:
Sorry, I made a mistake in that post (updating it). For Mac you place the .plugin file so it should be: