-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
62 lines (62 loc) · 1.43 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
52
53
54
55
56
57
58
59
60
61
62
{
"manifest_version": 2,
"name": "j-lawyer.org-Thunderbird-Extension",
"version": "1.1.6.3",
"description": "Sendet E-Mails an einen j-lawyer.org Server",
"author": "Maximilian Steinert",
"icons": {
"64": "icons/icon-64.png"
},
"permissions": [
"activeTab",
"tabs",
"messagesRead",
"messagesDelete",
"compose",
"storage",
"<all_urls>",
"messagesTags",
"messagesUpdate",
"menus"
],
"background": {
"scripts": ["background.js", "background_menu.js", "browser_action.js"],
"persistent": false
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"message_display_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon-16.png",
"24": "icons/icon-24.png",
"32": "icons/icon-32.png"
},
"default_title": "E-Mail an j-lawyer senden"
},
"compose_action": {
"default_popup": "popup_compose.html",
"default_icon": {
"16": "icons/icon-16.png",
"24": "icons/icon-24.png",
"32": "icons/icon-32.png"
},
"default_title": "j-lawyer"
},
"browser_action": {
"default_icon": {
"16": "icons/icon-16.png",
"24": "icons/icon-24.png",
"32": "icons/icon-32.png"
},
"default_title": "Kalendereintrag erstellen"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "125.0"
}
}
}