开发mozilla附加组件

时间:2015-04-03 13:51:46

标签: javascript firefox firefox-addon

我对mozilla附加开发很新。并发现很难快速启动。

我正在寻找一个基本的mozilla附加组件的样板。

以下:

live-reload  : for any change in files, to automatically create new xpi and automatically install in firefox
configuration : some constant values like version no, name etc, i can use in html files and in js files. (if i change any one should automatically update everywhere)
debugging : if i add console.log to anywhere, should print on terminal or console of browser
distributing : to automatically concat and minify the source code, and prepare xpi file for the same

我可以用http://meanjs.org进行网络开发的非常好的例子

firefox附加开发有什么类似的东西

1 个答案:

答案 0 :(得分:0)

addon-sdk提供用于配置的API,其模块系统可用于声明常量一次,它提供tool for project setup,调试已经built into the browser,连接和缩小源是不必要的,SDK有一个模块系统,允许按需加载模块,从而减少启动开销。

我强烈建议爆炸MDN,如果你只是看,大多数答案就在那里。