-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
38 lines (38 loc) · 1007 Bytes
/
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
{
"manifest_version": 2,
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "78.0",
"strict_max_version": "129.*"
}
},
"name": "Received",
"description": "Displays the \"Received\" header parsed with a regular expression.",
"version": "2.6.0",
"author": "Alexander Moisseev ([email protected])",
"homepage_url": "https://github.com/moisseev/received",
"icons": {
"16": "icon.svg",
"32": "icon.svg",
"48": "icon.svg",
"96": "icon.svg"
},
"background": {
"scripts": ["/background.js"]
},
"options_ui": {
"page": "options/options.html"
},
"permissions": ["storage", "messagesRead", "messagesModify"],
"experiment_apis": {
"displayReceivedHeader": {
"schema": "experiments/displayReceivedHeader.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["displayReceivedHeader"]],
"script": "experiments/displayReceivedHeader.js"
}
}
}
}