我正在尝试在Pale Moon(Firefox 的变体)中获得一个非常基本的扩展。
lib\main.js:
var data = require("sdk/self");
var pageMod = require("sdk/page-mod");
pageMod.PageMod({
include: "*.annoyingsite.com",
contentScriptFile: [data.url("script.js")]
});
lib\script.js:
document.getElementById("annoyingElement").setAttribute("style", "display: none;");
但我得到了错误:
[extension_name] could not be installed because it is not compatible with Pale Moon 24.7.2
我已经尝试阅读 CFX 文档并查看 stackoverflow。我发现的唯一提示可能是它与minVersion
/ maxVersion
in 有关install.rdf
,但我一无所获。请帮忙!