зеркало из https://github.com/mozilla/gecko-dev.git
35 строки
622 B
JSON
35 строки
622 B
JSON
{
|
|
"manifest_version": 2,
|
|
|
|
"applications": {
|
|
"gecko": {"id": "quitter@mozilla.org"}
|
|
},
|
|
|
|
"name": "Quitter",
|
|
"description": "Quit",
|
|
"version": "2019.12.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"]]
|
|
}
|
|
}
|
|
}
|
|
}
|