-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
46 lines (46 loc) · 1.06 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
{
"licence": "This Source Code Form is subject to the terms of the Mozilla Public License, v2.0. If a copy of the MPL was not distributed with this file, you can obtain one at https://mozilla.org/MPL/2.0/",
"copyright": "© 2022 Roy Orbison",
"manifest_version": 2,
"default_locale": "en",
"name": "__MSG_extensionName__",
"author": "Roy Orbison",
"version": "0.3.0",
"description": "__MSG_extensionDescription__",
"icons": {
"128": "icon.svg"
},
"homepage_url": "https://github.com/Roy-Orbison/GTrash",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "102.0"
}
},
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"accountsRead",
"messagesRead",
"messagesMove",
"activeTab"
],
"commands": {
"gtrash": {
"suggested_key": {
"default": "Shift+Alt+Delete"
},
"description": "__MSG_commandDescription__"
}
},
"message_display_action": {
"default_icon": {
"16": "icon-action.svg"
},
"default_label": "__MSG_actionLabel__",
"default_title": "__MSG_actionTitle__"
}
}