-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
48 lines (48 loc) · 1.23 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
{
"applications": {
"gecko": {
"id": "tabdeque@sblask",
"strict_min_version": "57.0"
}
},
"author": "Sebastian Blask",
"background": {
"scripts": [
"browser-polyfill.js",
"background.js"
]
},
"commands": {
"select-tab-from-end-of-tabdeque": {
"description": "Select tab from end of TabDeque",
"suggested_key": {
"default": "Ctrl+Up"
}
},
"send-tab-to-end-of-tabdeque": {
"description": "Send tab to end of TabDeque",
"suggested_key": {
"default": "Ctrl+Down"
}
}
},
"description": "A webextension for better tab handling. Inspired by Opera 12.",
"homepage_url": "https://github.com/sblask/webextension-tab-deque",
"icons": {
"128": "icon-128x128.png",
"16": "icon-16x16.png",
"32": "icon-32x32.png",
"48": "icon-48x48.png",
"64": "icon-64x64.png"
},
"manifest_version": 2,
"name": "Tab Deque",
"options_ui": {
"page": "options/options.html"
},
"permissions": [
"contextMenus",
"storage"
],
"version": "2.1.1"
}