-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmanifest.json
70 lines (70 loc) · 1.83 KB
/
manifest.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"manifest_version": 2,
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "78.0",
"strict_max_version": "136.*"
}
},
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"version": "2.6.1",
"author": "Alexander Moisseev ([email protected])",
"homepage_url": "https://github.com/moisseev/rspamd-spamness",
"icons": {
"16": "images/icon.svg",
"32": "images/icon.svg",
"48": "images/icon.svg",
"64": "images/icon.svg",
"96": "images/icon.svg"
},
"background": {
"scripts": [
"scripts/libCommon.js",
"scripts/libBackground.js",
"scripts/libHeader.js",
"scripts/messageHeader.js",
"scripts/background.js"
]
},
"options_ui": {
"page": "options/options.html"
},
"permissions": ["accountsRead", "menus", "messagesMove", "messagesRead", "notifications", "storage"],
"experiment_apis": {
"popup": {
"schema": "experiments/popup.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["popup"]],
"script": "experiments/popup.js"
}
},
"scoreColumn": {
"schema": "experiments/scoreColumn.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["scoreColumn"]],
"script": "experiments/scoreColumn.js"
}
},
"spamHeaders": {
"schema": "experiments/spamHeaders.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["spamHeaders"]],
"script": "experiments/spamHeaders.js"
}
},
"trainButtons": {
"schema": "experiments/trainButtons.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["trainButtons"]],
"script": "experiments/trainButtons.js"
}
}
}
}