2

Firefox 拡張機能を開発しようとしています。新しいプロファイルを作成し、extensionsFirefox を実行していない状態で、拡張機能のフォルダーをそのフォルダーにコピーします。Firefox を実行すると、拡張機能のフォルダーがフォルダーから消え、拡張extensions機能なしで Firefox が開きます。em:idまた、内部のフォルダーのパスを使用して、拡張子の とまったく同じ名前のテキスト ファイルであるリンクを作成しようとしました。ただし、毎回同じことが起こります - Firefox を起動するとファイルが消えます。私は Firefox 14、Mac OS X 10.8 Mountain Lion で作業しています。

4

1 に答える 1

1

You need to first install the extension into firefox. For that, make xpi file of your source, install it to firefox and restart it. Once the extension is installed, you can start editing source files inside the extension folder. Before making the xpi, make sure that your install.rdf have <em:unpack>true</em:unpack> to force firefox to unpack your xpi. Unpacking is not recommended and may cause performance issues.

My preferred method is to use Firefox extension proxy file where you can keep your source code anywhere and still enjoy the same benefit.

于 2013-10-24T13:45:04.013 に答える