将Chrome扩展程序迁移到Firefox

时间:2012-07-17 21:19:36

标签: json google-chrome-extension firefox-addon xul

我有一个chrome扩展名,其manifest.json文件基本上包含:

"content_scripts": [
{
  "matches": ["*://mail.google.com/mail/*"],
  "js": ["safegmailbootstrap.js","cryptojs/rollups/aes.js", "javascrypt/aes.js", "javascrypt/md5.js", "javascrypt/aesprng.js", "javascrypt/jscrypt.js", "javascrypt/entropy.js"]
}

我正在尝试构建一个firefox扩展,我已经创建了所有的结构,但仍然无法使它在firefox中运行。

我认为我在/ chrome /内容中编写的XUL文件错误了。

我试过这样写:

<?xml version="1.0"?>
<overlay id="sample" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script src="safegmailbootstrap.js" />
<script src="cryptojs/rollups/aes.js" />
<script src="javascrypt/aes.js" />
<script src="javascrypt/md5.js" />
<script src="javascrypt/aesprng.js" />
<script src="javascrypt/jscrypt.js" />
<script src="javascrypt/entropy.js" />
</overlay>

我不知道哪个类似于json chrome文件“匹配”到firefox扩展名。