-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
48 lines (48 loc) · 1.13 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
{
"manifest_version": 2,
"name": "Joplin Export",
"description": "__MSG_extensionDescription__",
"version": "0.0.8",
"author": "Martin Dörfelt",
"homepage_url": "https://github.com/marph91/thunderbird-joplin-export",
"applications": {
"gecko": {
"id": "joplin-export@martin.doerfelt",
"strict_min_version": "88.0",
"strict_max_version": "128.*"
}
},
"background": {
"scripts": ["dist/background.js"]
},
"browser_action": {
"default_title": "Joplin Export",
"default_icon": "images/logo_96_blue.png"
},
"commands": {
"export_to_joplin": {
"suggested_key": {
"default": "Ctrl+Alt+J"
},
"description": "Export emails by hotkey."
}
},
"options_ui": {
"page": "dist/options.html"
},
"permissions": ["menus", "messagesRead", "notifications", "storage"],
"icons": {
"96": "images/logo_96_blue.png"
},
"default_locale": "en_US",
"experiment_apis": {
"helper": {
"schema": "dist/helper.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["helper"]],
"script": "dist/helper.js"
}
}
}
}