0

我可以在 chrome 中使用扩展加载 NPAPI 插件,但我的要求是在 chrome 中加载没有扩展的plugin.dll 。

我尝试了以下方法在 chrome 中加载我的 plugin.dll:

  1. 复制我的plugin.dll并将其粘贴到 mozilla 的C:\Program Files (x86)\Mozilla Firefox\plugins.
  2. 打开 chrome 浏览器并输入chrome://plugins现在我可以看到我的plugin.dll加载到 chrome 并能够运行test.html.

这是在 chrome 浏览器中加载 npapi 插件的标准方法吗?如果没有,请建议如何做到这一点。

4

1 回答 1

4

在 Windows 上安装不属于扩展的 NPAPI 插件的正确方法是在 Windows 注册表中添加正确的键。

来自Mozilla 维基

HKLM/Software/MozillaPlugins/plugin-identifier

    Descripton: REG_SZ "Description of the Plugin"
    Path: REG_SZ "C:\..Path to the plugin.dll"
    ProductName: REG_SZ "The Plugin Name"
    Vendor: REG_SZ "The Plugin Author/Vendor"
    Version: REG_SZ "0.5.whatever plugin version string"
于 2013-08-15T15:21:42.917 回答