我有一个 Firefox 附加组件,它是一个基于覆盖的扩展,可在 Firefox 版本高达 31 中运行。但它不适用于 32 及更高版本。我通常使用Userscript Compiler工具来构建我的扩展。我在扩展程序的控制台中看不到任何内容(错误/输出)。
虽然当我使用 Greasemonkey 插件运行我的脚本时,它工作正常。问题是在将扩展构建为 XPI 文件后运行扩展。
下面是我的扩展结构:
myextension
|-->skin
|-->classic
|-->content
|-->myscript.user.js
|-->myscriptPrefman.js
|-->myscriptScript-compiler.js
|-->myscriptXmlhttprequester.js
|-->script-compiler-overlay.xul
|-->chrome
|-->install.rdf
|-->icon.png
|-->chrome.manifest
以下是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>{9ef9b86c-03da-4e10-9552-e97a6d258af5}</em:id>
<em:name>Sample Extension</em:name>
<em:version>2.6</em:version>
<em:description>A sample extension - Firefox</em:description>
<em:creator>Mozdev</em:creator>
<em:contributor>Greasemonkey Compiler by Anthony Lieuallen;</em:contributor>
<em:contributor>http://arantius.com/</em:contributor>
<em:homepageURL>www.example.com</em:homepageURL>
<em:targetApplication><Description>
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
<em:minVersion>2.0</em:minVersion>
<em:maxVersion>35.*</em:maxVersion>
</Description>
</em:targetApplication>
</Description>
</RDF>
chrome.manifest
内容:
content myextension content/
overlay chrome://browser/content/browser.xul chrome://myextension/content/script-compiler-overlay.xul
skin myextension classic/1.0 skin/classic/
我是否需要更改扩展中的任何内容或将其转换为 Bootstrap 扩展或使用附加 SDK 来构建 XPI 文件?
更新:
我遵循了 Wladimir 建议的附加 SDK 方法并创建了一个 XPI 安装程序文件。但是用户脚本没有在页面内运行。
代码仍然从 Greasemonkey 插件运行。
这是在 Greasemonkey 中运行良好的 Greasemonkey 脚本,但不是通过编译器或 SDK 进行扩展时。
我按照步骤在本地机器上安装了附加 SDK。我使用该cfx
命令构建 XPI 文件。我在 Firefox 最新版本(ver.33.0.2)中安装它并访问 openuserjs.org 我什么也看不到。这是为什么?