从HTML页面内的Javascript访问Firefox扩展XPCOM对象



我试图获得最基本的XPCOM javascript对象是可访问的javascript我加载到我的网页。我使用本教程中的示例代码:https://developer.mozilla.org/en-US/docs/How_to_Build_an_XPCOM_Component_in_Javascript

下面是我的设置:


install.rdf:

<?xml version="1.0"?>
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
     xmlns:em="http://www.mozilla.org/2004/em-rdf#">
    <Description about="urn:mozilla:install-manifest">
        <em:id>helloworld@thellamatesting.com</em:id>
        <em:name>Hello World</em:name>
        <em:version>1.0</em:version>
        <em:type>2</em:type>
        <em:creator>The Llama</em:creator>
        <em:description>Testing</em:description>
        <em:targetApplication>
            <Description>
                <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
                <em:minVersion>2.0</em:minVersion>
                <em:maxVersion>20.0</em:maxVersion>
            </Description>
        </em:targetApplication>
    </Description>      
</RDF>



chrome.manifest

content     helloworld    chrome/content/
content     helloworld    chrome/content/ contentaccessible=yes
overlay chrome://browser/content/browser.xul chrome://helloworld/content/browser.xul
component {4762b5c0-5b32-11e2-bcfd-0800200c9a66} components/HelloWorld.js
contract @thellamatesting.com/helloworld;1 {4762b5c0-5b32-11e2-bcfd-0800200c9a66}
locale  helloworld  en-US   locale/en-US/



组件/HelloWorld.js

Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
function HelloWorld() {
    // If you only need to access your component from Javascript, uncomment the following line:
    this.wrappedJSObject = this;
}
HelloWorld.prototype = {
    classDescription: "My Hello World Javascript XPCOM Component",
    classID:          Components.ID("{4762b5c0-5b32-11e2-bcfd-0800200c9a66}"),
    //Also tried
    //classID:          Components.ID("4762b5c0-5b32-11e2-bcfd-0800200c9a66"),
    contractID:       "@thellamatesting.com/helloworld;1",
    QueryInterface: XPCOMUtils.generateQI(),
    // Also tried
    //QueryInterface: XPCOMUtils.generateQI([Components.interfaces.nsIHelloWorld]),
    hello: function() { 
        return "Hello World!"; 
    }
};
var components = [HelloWorld];
if ("generateNSGetFactory" in XPCOMUtils)
  var NSGetFactory = XPCOMUtils.generateNSGetFactory(components);  // Firefox 4.0 and higher
else
  var NSGetModule = XPCOMUtils.generateNSGetModule(components);    // Firefox 3.x



测试HTML:

<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title></title>
        <script type="application/javascript">
            function go() {
                try {
                    var coms = Components;
                    alert(Components.classes);
                    var myComponent = Components.classes['@thellamatesting.com/helloworld;1'].getService().wrappedJSObject;
                    alert(myComponent.hello());
                } catch (anError) {
                        dump("ERROR: " + anError);
                }
            };
        </script>
    </head>
    <body>
        <button onclick="javascript:go()">Click to go</button>
    </body>
</html>

在所有这些之后,我以"Components"结尾。类是未定义的"。有人知道我哪里做错了吗?

非常感谢!

为了从javascript上下文中访问Components对象,您需要具有扩展功能,即从chrome:// URL运行。有使用是一个普通的网页(从http://)提供请求扩展功能(称为UniversalXPConnect)的方式,但它已被删除出于安全考虑。

我认为你应该多告诉我们一些你想要达到的目标。如果你想从你的插件导出数据到一个网页,AddonSDK(见https://addons.mozilla.org/en-US/developers/docs/sdk/latest/dev-guide/)有一个很好的协议,称为页面mod;它允许你在网页中注入数据

多亏了Jonathan的建议,我才想出了一个解决这个问题的好办法。下面是我使用的代码:

main.js:

var data = require("self").data;
var pageMod = require("page-mod");
const {Cc,Ci} = require("chrome");
pageMod.PageMod({
    include: "*",
    contentScriptFile: data.url("copy-helper.js"),
    onAttach: function(worker) {
        worker.port.on("handleCopy", function(copyInfo) {
            var gClipboardHelper = Cc["@mozilla.org/widget/clipboardhelper;1"].getService(Ci.nsIClipboardHelper);
            gClipboardHelper.copyString(copyInfo.dataToCopy);
        });
    }
});

copy-helper.js:

window.addEventListener("copyEvent", function (event) {
    self.port.emit('handleCopy', event.detail.copyInfo);
}, false);

var event = new CustomEvent("copyEvent", {
    detail:{
        copyInfo: {dataToCopy:"my string"}
    }
});
window.dispatchEvent(event);

希望这能帮助到其他遇到这个问题的人!

最新更新