How to sign a Firefox extension

I want to sign the Firefox extension. I have an online search for signing an extension and have found the URL https://developer.mozilla.org/en/docs/Signing_a_XPI . I have read the instructions on this site. But failed to enter the extension. In my case, the signtool and certutil commands do not execute.

if anyone knows the signing process for the Firefox extension, please let me know. Thanks.

0
source share
1 answer

The document you completed is for the old signing of the developer certificate and is now deprecated since only Mozilla certificates are now allowed.

  • AMO.
    • jpm SDK, :

    jpm sign --api-key ${AMO_API_KEY} --api-secret ${AMO_API_SECRET}

    • , xpi :

    jpm sign --xpi /path/to/your-addon.xpi --api-key ${AMO_API_KEY} --api-secret ${AMO_API_SECRET}

, :

+2

Source: https://habr.com/ru/post/1625695/


All Articles