mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 15:23:51 +00:00
0df1d1fa1e
Differential Revision: https://phabricator.services.mozilla.com/D12478 --HG-- extra : rebase_source : 1a89085a191d3bdda5b49f178644e5766a9fb5c2 extra : amend_source : 0685f35163593b596d50c45567b5d64b68935f04
35 lines
622 B
JSON
35 lines
622 B
JSON
{
|
|
"manifest_version": 2,
|
|
|
|
"applications": {
|
|
"gecko": {"id": "quitter@mozilla.org"}
|
|
},
|
|
|
|
"name": "Quitter",
|
|
"description": "Quit",
|
|
"version": "2018.04.03",
|
|
"author": "Mozilla",
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
|
|
"content_scripts": [{
|
|
"js": ["contentscript.js"],
|
|
"run_at": "document_start",
|
|
"match_about_blank": true,
|
|
"matches": ["<all_urls>"]
|
|
}],
|
|
|
|
"experiment_apis": {
|
|
"quitter": {
|
|
"schema": "schema.json",
|
|
"parent": {
|
|
"scopes": ["addon_parent"],
|
|
"script": "parent.js",
|
|
"paths": [["quitter", "quit"]]
|
|
}
|
|
}
|
|
}
|
|
}
|