我的问题很简单,我尝试创建一个Chrome扩展程序来调用NaCl模块。我的按钮和其他文件似乎没问题,而我用C ++编写的非常简单的代码返回了PostMessage hello World。但是,当我尝试时,它不起作用。在Chrome扩展程序中包含NaCl模块是否有我还没有做的特定事情?我必须说,我有点失去希望了。
这是我的“ background.html”:
<body>
<script src="background.js"></script>
<div id="listener">
<embed name="nacl_module"
id="nacl_correction"
src="nacl_correction.nmf"
type="application/x-nacl" />
</div>
<script >
document.getElementById('listener').addEventListener('load', moduleDidLoad, true);
</script>
</body>
这是我的“ background.js”:
var NaclCorrectionModule = null; // Global application object.
function moduleDidLoad() {
NaclCorrectionModule = document.getElementById('nacl_correction');
//alert( NaclCorrectionModule);
if (NaclCorrectionModule == null) {
alert('Out');
}
else {
alert (NaclCorrectionModule);
}
NaclCorrectionModule.addEventListener('message', handleMessage, false);
}
function handleMessage(message_event) {
alert(message_event.data);
}
chrome.browserAction.onClicked.addListener(moduleDidLoad);
最后,我的“ Manifest.json”:
{
"name": "Correction de Cordial sous Chrome",
"version": "1.0",
"background_page" :"background.html",
"description": "Intégration d'une extension Cordial pour la correction sous Chrome",
"permissions": [
"tabs", "http://*/*"
],
"browser_action": {
"default_icon": "corriger_big.png", // Icône de l'extension
"default_title": "Correction de Cordial" // Titre affiche sur le bouton
}
}
如果有人有什么想法,我将很感激。
最佳答案
经过一番寻找,我发现我忘记了一些东西。在我的background.js中,我没有向NaCl发送任何消息,因此它无法工作。
我只需要添加1行:
NaclCorrectionModule.postMessage('');
感谢您阅读我的问题,希望对您有所帮助!!