-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
manifest.json
44 lines (44 loc) · 1.1 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
{
"manifest_version": 2,
"name": "ReplyWithHeader",
"description": "Outlook style headers and few goodies for Thunderbird",
"version": "3.3.0",
"author": "Jeevanandam M.",
"homepage_url": "https://myjeeva.com/replywithheader-mozilla",
"browser_specific_settings": {
"gecko": {
"id": "replywithheader@myjeeva.com",
"strict_min_version": "125.0"
}
},
"icons": {
"16": "images/rwh.svg",
"24": "images/rwh.svg",
"32": "images/rwh.svg",
"64": "images/rwh.svg",
"128": "images/rwh.svg"
},
"permissions": [
"storage",
"notifications",
"menus",
"compose",
"messagesRead",
"accountsRead"
],
"message_display_action": {
"default_title": "RWH",
"type": "menu",
"default_icon": {
"16": "images/rwh.svg",
"24": "images/rwh.svg",
"32": "images/rwh.svg"
}
},
"background": {
"page": "background.html"
},
"options_ui": {
"page": "/options/options.html"
}
}