我正在尝试为Firefox编写WebExtension。在Bassically,我需要一个工作示例,如何从Firefox运行本地程序。
我目前的扩展实施包括:
从网页我发送的消息由content-scripts.js处理,并将其转发给background.js。但是在background.js的msgbox函数中,我无法调用ctypes。它给了我错误:
ctypes未定义
我尝试以不同的方式加载ctypes但它不起作用:
Components.utils.import("resource://gre/modules/ctypes.jsm")
要么
var {ctypes} = Cu.import("resource://gre/modules/ctypes.jsm"
我做错了什么?
以下是我的扩展程序的源代码。
manifest.josn:
{
"description": "Test web-extension.",
"manifest_version": 2,
"name": "Example",
"version": "1.0",
"homepage_url": "http://example.org",
"icons": {
"48": "icons/example-48.png"
},
"content_scripts": [
{
"matches": ["*://web.localhost.com/*"],
"js": ["content-scripts.js"]
}
],
"background": {
"scripts": ["background.js"]
},
"applications": {
"gecko": {
"id": "example@mozilla.org",
"strict_min_version": "45.0"
}
},
"permissions": []
}
background.js:
chrome.runtime.onMessage.addListener(msgbox());
function msgbox() {
var lib = ctypes.open("C:\\WINDOWS\\system32\\user32.dll");
/* Declare the signature of the function we are going to call */
var msgBox = lib.declare("MessageBoxW",
ctypes.winapi_abi,
ctypes.int32_t,
ctypes.int32_t,
ctypes.jschar.ptr,
ctypes.jschar.ptr,
ctypes.int32_t);
var MB_OK = 0;
var ret = msgBox(0, "Hello world", "title", MB_OK);
lib.close();
}
答案 0 :(得分:2)
您只能在WebExtension中使用WebExtension API(在MDN上)。 Cu.import
,尤其是ctypes不是WebExtension API的一部分,因此无法使用。如果要与操作系统级别的功能进行交互,则可能需要等待chrome.runtime.connectNative
。