-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
37 lines (37 loc) · 970 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
{
"manifest_version": 2,
"name": "AutoArchive",
"description": "Automatically archives mails with a single click to preconfigured folders.",
"version": "1.0",
"author": "Erik Hennig",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "78.0"
}
},
"background": {
"scripts": [
"common.js"
]},
"message_display_action": {
"default_title": "AutoArchive",
"default_icon": "images/archive-32px.png"
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"permissions": [
"messagesRead",
"accountsRead",
"messagesMove",
"storage"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; default-src 'self'",
"icons": {
"64": "images/archive-64px.png",
"32": "images/archive-32px.png",
"16": "images/archive-16px.png"
}
}