-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
43 lines (43 loc) · 1.08 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
{
"name": "__MSG_extensionName__",
"version": "1.2.1",
"description": "__MSG_extensionDescription__",
"author": "Amunak",
"homepage_url": "https://github.com/Amunak/thunderbird-list-unsubscribe-addon",
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"background": {
"scripts": [
"background.js"
],
"type": "module"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "112.0"
}
},
"default_locale": "en",
"icons": {
"48": "icons/icon_48.png",
"96": "icons/icon_96.png"
},
"manifest_version": 2,
"message_display_action": {
"default_icon": "icons/icon_48.png",
"default_title": "__MSG_unsubButtonLabel__",
"default_popup": "popup.html"
},
"permissions": [
"http://*/*",
"https://*/*",
"messagesRead",
"accountsRead",
"clipboardWrite",
"menus",
"storage"
]
}