0

次のようなコード行を持つクロム拡張機能があります。

chrome.tabs.executeScript(null, {allFrames:true, file:"myscript.js"});

そして次のような機能:

chrome.extension.onRequest.addListener

chrome.extension.sendRequest

これらの機能をFirefox拡張機能で機能させるにはどうすればよいですか?

また、オプション(ポップアップ)ページと背景ページの間の通信など、同じ機能を実現するにはどうすればよいですか?

4

1 に答える 1

-1

https://addons.mozilla.org/en-US/developers/docs/sdk/1.14/dev-guide/tutorials/modifying-web-pages-url.html

// Import the page-mod API
var pageMod = require("sdk/page-mod");
// Import the self API
var self = require("sdk/self");

// Create a page mod
// It will run a script whenever a ".org" URL is loaded
// The script replaces the page contents with a message
pageMod.PageMod({
  include: "*.org",
  contentScriptFile: self.data.url("my-script.js")
});
于 2013-05-15T11:18:08.253 に答える