-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
39 lines (38 loc) · 918 Bytes
/
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
{
"name": "__MSG_extensionName__"
, "description": "__MSG_extensionDescription__"
, "version": "0.0.5"
, "author": "Matt Hensman <[email protected]>"
, "browser_specific_settings": {
"gecko": {
"id": "[email protected]"
, "strict_min_version": "55.0"
}
}
, "background": {
"scripts": [
"main.js"
]
}
, "commands": {
"moveTabToNewWindow": {
"suggested_key": {
"default": "Ctrl+Alt+N"
}
, "description": "Move current tab to a new window"
}
, "pauseExtension": {
"suggested_key": {
"default": "Ctrl+Alt+P"
}
, "description": "Temporarily pause extension"
}
}
, "default_locale": "en"
, "manifest_version": 2
, "page_action": {}
, "permissions": [
"menus"
, "tabs"
]
}