-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
51 lines (51 loc) · 1.35 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
{
"manifest_version": 2,
"name": "SentAutoMove",
"description": "__MSG_extensionDescription__",
"version": "1.0.1",
"author": "Mic (m@micz.it)",
"homepage_url": "https://micz.it/thunderbird-addon-sentautomove/",
"browser_specific_settings": {
"gecko": {
"id": "sentautomove@micz.it",
"strict_min_version": "115.0",
"strict_max_version": "128.*"
}
},
"permissions": [
"messagesRead",
"accountsRead",
"storage",
"messagesMove",
"compose",
"notifications",
"menus"
],
"options_ui":{
"page": "options/mzsam-options.html"
},
"background": {
"page": "mzsam-background.html"
},
"icons": {
"64": "images/icon.png",
"32": "images/icon-32px.png",
"16": "images/icon-16px.png"
},
"default_locale": "en",
"browser_action": {
"default_title": "SentAutoMove",
"default_icon": "images/icon-32px.png",
"default_popup": "popup/mzsam-popup.html"
},
"experiment_apis": {
"ImapTools": {
"schema": "api/ImapTools/schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["ImapTools"]],
"script": "api/ImapTools/implementation.js"
}
}
}
}