1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
"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"]]
}
}
}
}
|