0

我想开发不应该有 UI 的 firefox 插件(扩展)。我想在网页加载时执行一些任务,是否有可能实现这一点?

如果有人有有用的链接请回复这篇文章

4

2 回答 2

2

N在 Firefox 插件 sdk 工具中,可以使用 page-mod 来实现:

var pageMod = require("page-mod");
pageMod.PageMod({
  include: "*.org", // the url matcher of the page you want to modify
  contentScriptWhen: 'end', // when to load the tasks
  contentScript: '' // the javascript tasks you want to perform on page
});

它不需要创建 UI。

您可以在 firefox 插件 sdk 的文档页面 (https://addons.mozilla.org/en-US/developers/docs/sdk/latest/) 找到更多相关信息。

于 2012-07-20T06:18:03.540 回答
0

第一个结果:https ://www.google.com.au/search?q=firefox+extension+on+page+load

前两个结果:https ://developer.mozilla.org/en-US/search?q=firefox+extension+on+page+load

于 2012-07-20T11:52:30.623 回答