从https://github.com/axgle/npapi-chrome-plugin-helloworld下载NPAPI hello-world插件,并使用Chrome开发者模式将其打包为chrome扩展程序(crx)。
在chrome浏览器中加载了上述扩展程序并尝试在chrome浏览器中打开test.html(随上面提供的插件)。但它说"无法加载插件"
以下是test.html的源代码
<doctype html>
<html>
<head>
<script>
window.onload = function(){
test = document.getElementById("pluginObj");
alert(test.sayHello());
}
</script>
</head>
<embed id="pluginObj" type="application/x-helloworld">
<body></body>
</html>
根据我的验证,插件正在嵌入(因为在更改测试时它会提供HTML文档对象)但无法调用插件的sayHello方法。
然而,当我尝试在另一台PC上加载上述扩展时,它正确加载并能够调用插件的sayHello方法。 两个系统都有相同的操作系统(Windows XP + SP3),两者都使用相同版本的Chrome浏览器(23.0.1271.97米)
感谢这方面的任何帮助。
答案 0 :(得分:1)
当您将其添加到CRX时,您是否将其标记为公开?如果不这样做,它将不会在扩展名之外显示。
以下是另一个相关问题:Google Chrome Extensions and NPAPI