-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest_template.json
More file actions
71 lines (71 loc) · 1.64 KB
/
manifest_template.json
File metadata and controls
71 lines (71 loc) · 1.64 KB
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
63
64
65
66
67
68
69
70
71
{
"manifest_version": 3,
"name": "__MSG_manifest_name__",
"short_name": "Ghostbird",
"description": "__MSG_manifest_description__",
"version": "$version$",
"homepage_url": "$homepage_url$",
"version_name": "$version_name$",
"default_locale": "en",
"author": "snipsnipsnip",
"browser_specific_settings": {
"gecko": {
"id": "@ghostbird.exteditor.addons.thunderbird.net",
"strict_min_version": "128.0",
"data_collection_permissions": {
"required": [
"none"
]
}
}
},
"permissions": [
"alarms",
"compose",
"notifications",
"menus",
"scripting",
"storage"
],
"host_permissions": [
"http://localhost/",
"ws://localhost/"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; connect-src http://localhost:* ws://localhost:*;"
},
"icons": {
"96": "blue.svg"
},
"commands": {
"start_ghostbird": {
"description": "__MSG_manifest_commands_start_ghostbird_description__",
"suggested_key": {
"default": "Ctrl+Shift+H"
}
},
"stop_ghostbird": {
"description": "__MSG_manifest_commands_stop_ghostbird_description__"
},
"toggle_ghostbird": {
"description": "__MSG_manifest_commands_toggle_ghostbird_description__"
},
"open_options": {
"description": "__MSG_manifest_commands_open_options_description__"
}
},
"background": {
"type": "module",
"scripts": [
"js/background.js"
]
},
"options_ui": {
"page": "options.html"
},
"compose_action": {
"default_title": "Ghostbird",
"default_label": "",
"default_icon": "gray.svg"
}
}