使用 FireBreath 打包适用于 Chrome 的 NPAPI 插件

发布于 2024-11-16 16:55:35 字数 465 浏览 4 评论 0原文

我正在尝试将使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千里故人稀 2024-11-23 16:55:35

抱歉,我在那篇文章中犯了一个错误(正在更新)。对于 Mac,您放置 .plugin 文件,因此它应该是:

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

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" }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文