-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
65 lines (64 loc) · 1.69 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
63
64
65
{
"manifest_version": 2,
"name": "Move messages and yourself",
"description": "Basic message move and folder display extension using key shortcuts. Change the shortcuts under the 'Manage Extension Shortcuts'",
"version": "1.9",
"author": "agb",
"applications": {
"gecko": {
"id": "{8f168a36-1dc7-11ea-9233-f290ba9c1df4}",
"strict_min_version": "68.0"
}
},
"icons": {
"16": "icons/move_to_inbox.svg",
"32": "icons/move_to_inbox.svg",
"64": "icons/move_to_inbox.svg"
},
"browser_action": {
"default_popup": "popup.html",
"default_title": "move-msg",
"default_icon": {
"16": "icons/move_to_inbox.svg",
"32": "icons/move_to_inbox.svg"
}
},
"permissions": [
"storage",
"messagesMove",
"accountsRead",
"accountsFolders",
"messagesRead"
],
"commands": {
"move-msg": {
"suggested_key": {
"default": "Ctrl+Shift+Z",
"linux": "Ctrl+Shift+Z",
"windows": "Ctrl+Shift+Z"
},
"description": "move messages to chosen folder"
},
"fldr-jump": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"linux": "Ctrl+Shift+X",
"windows": "Ctrl+Shift+X"
},
"description": "display chosen folder"
},
"move-jump": {
"suggested_key": {
"default": "Ctrl+Shift+A",
"linux": "Ctrl+Shift+A",
"windows": "Ctrl+Shift+A"
},
"description": "move messages to and display chosen folder"
}
},
"background": {
"scripts": [
"scripts/background.js"
]
}
}