Bonjour,
Nous sommes éditeur web application, nous développons des produits pour notre client de la tailles 5 -10000 personnes, est-ce qu’il y des façons que nous pouvons publier notre add-on sur la liste plus vite (sans validé par équipe talent Mozilla ) ? ou il y a d’autres solution ?
Cordialement
Kai
andreip
September 2, 2017, 6:47pm
2
Hi! Sorry, I am not French
Unlisted extensions can be installed immediartly.
Add-ons extend the core capabilities of Firefox, allowing users to modify and personalize their Web experience. A healthy add-on ecosystem, built on trust, is vital for developers to be successful and users to feel safe making Firefox their own. For...
Upload zip file here and then download it
https://addons.mozilla.org/en-US/developers/addon/submit/upload-unlisted
You need a Content type header application/xpi for 1 click install.
Example
Install translator (look at headers) https://github.com/andreicristianpetcu/google_translate_this/releases/download/v1.2.7/google_translate_this_page-1.2.7-an.fx.xpi
If you want to ship updates look in manifest.json at update url
"translate-current-page": {
"suggested_key": {
"default": "Alt+Shift+P"
},
"description": "Translate Current Page"
}
},
"applications": {
"gecko": {
"id": "{e34d5840-6b3b-49d8-92c2-9696798c4e2a}",
"update_url": "https://raw.githubusercontent.com/andreicristianpetcu/google_translate_this/master/updates.json"
}
}
}
{
"addons": {
"{e34d5840-6b3b-49d8-92c2-9696798c4e2a}": {
"updates": [
{ "version": "1.0.0",
"update_link": "https://github.com/andreicristianpetcu/google_translate_this/releases/download/v1.0.0/google_translate_this_page-1.0.0-an.fx.xpi" },
{ "version": "1.0.2",
"update_link": "https://github.com/andreicristianpetcu/google_translate_this/releases/download/v1.0.2/google_translate_this_page-1.0.2-an.fx.xpi" },
{ "version": "1.0.3",
"update_link": "https://github.com/andreicristianpetcu/google_translate_this/releases/download/v1.0.3/google_translate_this_page-1.0.3-an.fx.xpi" },
{ "version": "1.2.0",
"update_link": "https://github.com/andreicristianpetcu/google_translate_this/releases/download/v1.2.0/google_translate_this_page-1.2.0-an.fx.xpi" },
{ "version": "1.2.2",
"update_link": "https://github.com/andreicristianpetcu/google_translate_this/releases/download/v1.2.2/google_translate_this_page-1.2.2-an.fx.xpi" },
{ "version": "1.2.3",
"update_link": "https://github.com/andreicristianpetcu/google_translate_this/releases/download/v1.2.3/google_translate_this_page-1.2.3-an.fx.xpi" },
{ "version": "1.2.4",
"update_link": "https://github.com/andreicristianpetcu/google_translate_this/releases/download/v1.2.4/google_translate_this_page-1.2.4-an.fx.xpi" },
{ "version": "1.2.5",
"update_link": "https://github.com/andreicristianpetcu/google_translate_this/releases/download/v1.2.5/google_translate_this_page-1.2.5-an.fx.xpi" },
This file has been truncated. show original
Enjoy!