我正在尝试在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 / install.rdf有关,但是我一无所获。请帮忙!

最佳答案

他们更改了苍白月亮的GUID。我认为这是一个愚蠢的举动,但我认为这是必要的。

此处的更多信息:

MozillaZine :: Pale Moon has changed its GUID

PaleMoonForum :: Extensions and Pale Moon 25

您必须将其添加到install.rdf中:

  <em:targetApplication><!-- Pale Moon -->
     <Description>
        <em:id>{8de7fcbb-c55c-4fbe-bfc5-fc555c87dbc4}</em:id>
        <em:minVersion>25.0</em:minVersion>
        <em:maxVersion>25.*</em:maxVersion>
     </Description>
  </em:targetApplication>

因此,将您的插件编译为xpi,然后重命名为zip,然后编辑install.rdf,添加苍白的GUID,然后将其压缩后,再重命名为xpi

07-24 09:50