-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
56 lines (56 loc) · 1.44 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
{
"manifest_version": 2,
"name": "Thunderkey",
"description": "Lets you perform common email tasks using keyboard shortcuts",
"version": "1.0.1",
"author": "Sarah Forest and George Hill",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "78.0",
"strict_max_version": "91.*"
}
},
"permissions": [
"accountsFolders",
"accountsRead",
"compose",
"messagesModify",
"messagesMove",
"messagesRead",
"storage",
"tabs"
],
"background": {
"scripts": [
"src/background.js"
],
"persistent": true
},
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": true,
"browser_style": true
},
"browser_action": {
"default_popup": "src/options/options.html",
"default_icon": "src/thunderkey-icon/thunderkey-16.svg",
"default_title": "Thunderkey"
},
"experiment_apis": {
"thunderkey_api": {
"schema": "api/thunderkey_api/schema.json",
"parent": {
"scopes": [
"addon_parent"
],
"paths": [
[
"thunderkey_api"
]
],
"script": "api/thunderkey_api/implementation.js"
}
}
}
}