With this week’s release of Firefox 43, all add-ons must now be signed. While this will make the block-list and other malware prevention measures more effective, add-on developers who wish to distribute outside of addons.mozilla.org must now add signing to their release flow.
To make it easier for these developers, we released the add-on signing API last month. Today, we’re also providing a new version of the jpm command line tool that makes add-on signing even easier.
Installation
Install jpm for NodeJS from NPM like this:
npm install jpm
Generate API Credentials
In order to work with the signing API you first need to log in to the addons.mozilla.org developer hub and generate API credentials.
Signing an Add-on
To begin signing an SDK-based add-on with jpm, change into the source directory and run this command:
jpm sign --api-key ${AMO_API_KEY} --api-secret ${AMO_API_SECRET}
This will fetch a signed XPI file to your current directory (or --addon-dir
) that you can self-host for installation into Firefox. Read more about add-on distribution here. Since this XPI is intended for distribution outside of addons.mozilla.org, it assumes you don’t want your add-on listed on addons.mozilla.org. This is referred to as an unlisted add-on.
Updating an Add-on
To sign a new version of your unlisted add-on, just increment the version number in your package.json file and re-run the jpm sign command.
Signing XPI Files Directly
If you aren’t using jpm to manage your add-on, you can still sign the XPI file directly, like this:
jpm sign --xpi /path/to/your-addon.xpi --api-key ... --api-secret ...
Signing Requirements
We recently made changes to the signing requirements for add-ons not listed on addons.mozilla.org. We still do some basic checks to make sure that the add-on is well formed enough to install without errors but if those checks pass, any add-on will be signed.
Keep in mind that signing is only required for distributing your add-on. You can always install unsigned add-ons into a development version of Firefox for testing purposes.
Listed Add-ons
The jpm sign command currently doesn’t support add-ons distributed on addons.mozilla.org (referred to as listed add-ons) at the moment. Listed add-ons still require a manual review.
Going Further
We hope that the jpm command eases the development burden introduced by signing. See the jpm sign reference documentation for more options, features, and examples. As usual, please report bugs if you run into any.
dal wrote on
Jorge Villalobos wrote on
Ann L Everett wrote on
AnneTheAgile wrote on
Jorge Villalobos wrote on
Noitidart wrote on
Noitidart wrote on