1

我正在尝试为 Firefox 编写 WebExtension。基本上,我需要一个如何从 Firefox 运行本地程序的工作示例。

我当前的扩展实现包括:

  • 背景.js
  • 内容脚本.js
  • 清单.json

我正在从网页发送一条消息,该消息由将其转发到 background.js 的 content-scripts.js 处理。但是在 background.js 的 msgbox 函数中,我无法调用 ctypes。它给了我错误:

ctypes 未定义

我尝试以不同的方式加载 ctypes 但它不起作用: Components.utils.import("resource://gre/modules/ctypes.jsm")var {ctypes} = Cu.import("resource://gre/modules/ctypes.jsm"

我做错了什么?

这是我的扩展的源代码。

清单.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": []
    }

背景.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();  
    }

4

1 回答 1

2

您只能在 WebExtension 中使用 WebExtension API(在MDN上)。Cu.import尤其是 ctypes 不是 WebExtension API 的一部分,因此不能使用。chrome.runtime.connectNative如果您想与操作系统级别的功能进行交互,您可能需要等待。

于 2016-04-23T09:30:32.037 回答