forked from friedPotat0/Spam-Scores
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (44 loc) · 1.07 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.4.1",
"author": "Christian Zaenker",
"default_locale": "en",
"applications": {
"gecko": {
"id": "spamscores@czaenker",
"strict_min_version": "91.0a1",
"strict_max_version": "102.*"
}
},
"icons": {
"64": "images/icon.png",
"32": "images/icon-32px.png",
"16": "images/icon-16px.png"
},
"background": {
"page": "src/background/background.html"
},
"permissions": ["messagesRead", "accountsRead", "storage"],
"experiment_apis": {
"SpamScores": {
"schema": "schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["SpamScores"]],
"script": "src/experiments/experiments.js",
"events": ["startup"]
}
}
},
"message_display_action": {
"default_popup": "src/browser/popup/popup.html",
"default_title": "Spam Scores"
},
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": false,
"browser_style": true
}
}