-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
manifest.json
51 lines (45 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
44
45
46
47
48
49
50
51
{
"manifest_version": 2,
"default_locale": "en",
"name": "__MSG_extensionName__",
"version": "2.1",
"author": "Teal Dulcet",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/tdulcet/Thunderbird-Send",
"icons": {
"48": "icons/icon.svg",
"96": "icons/icon.svg"
},
"permissions": [
"storage",
"notifications",
"<all_urls>"
],
"compose_action": {
"browser_style": true,
"default_icon": "icons/icon.svg",
"default_title": "__MSG_composeActionButtonTitle__",
"default_label": "__MSG_composeActionButtonLabel__",
"default_popup": "popup/popup.html"
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"background": {
"scripts": ["background.js"],
"type": "module"
},
"cloud_file": {
"name": "Thunderbird Send",
"management_url": "management/management.html",
"browser_style": true,
"reuse_uploads": false
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "115.0"
}
}
}