我可以使用chrome中的扩展程序加载NPAPI插件,但我的要求是在chrome中加载 plugin.dll 而不扩展。
我已尝试以下方法在chrome中加载我的plugin.dll:
C:\Program Files (x86)\Mozilla Firefox\plugins
。chrome://plugins
现在我可以看到我的 plugin.dll 加载到chrome并且能够运行test.html
。这是在Chrome浏览器中加载npapi插件的标准方法吗?如果没有,那么请建议如何做到这一点。
答案 0 :(得分:4)
安装不属于Windows扩展程序的NPAPI插件的正确方法是在Windows注册表中添加正确的密钥。
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"