-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (38 loc) · 890 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
38
39
40
41
42
43
44
45
46
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "0.6.7",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://github.com/dasisdormax/mailmanmod-webextension",
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "60.0"
},
"edge": {
"browser_action_next_to_addressbar": true
}
},
"icons": {
"64": "icons/mmm-64.png",
"128": "icons/mmm-128.png"
},
"browser_action": {
"browser_style": false,
"default_icon": "icons/mmm-64.png",
"default_title": "__MSG_extensionName__",
"default_popup": "html/popup.html"
},
"background": {
"page": "html/background.html"
},
"options_ui": {
"browser_style": false,
"page": "html/options.html"
},
"permissions": [
"<all_urls>",
"storage"
]
}