-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
55 lines (47 loc) · 1.09 KB
/
Copy pathmanifest.json
File metadata and controls
55 lines (47 loc) · 1.09 KB
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
{
"manifest_version": 2,
"name": "Move this eMail!",
"version": "1.0.0",
"description": "One-click toolbar button that creates a Move-To-Folder filter for the current sender and optionally applies it immediately.",
"developer": {
"name": "Thomas Uebel",
"url": "https://thomasuebel.de"
},
"icons": {
"48": "icons/icon.svg",
"96": "icons/icon.svg"
},
"background": {
"scripts": ["background.js"]
},
"message_display_action": {
"default_title": "Move this eMail!",
"default_icon": "icons/icon.svg"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"experiment_apis": {
"filterCreator": {
"schema": "experiment/schema.json",
"parent": {
"scopes": ["addon_parent"],
"script": "experiment/api.js",
"paths": [["filterCreator"]]
}
}
},
"permissions": [
"messagesRead",
"accountsRead",
"notifications",
"storage"
],
"browser_specific_settings": {
"gecko": {
"id": "move-this-email@thomasuebel.de",
"strict_min_version": "128.0"
}
}
}