-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmanifest.json
39 lines (39 loc) · 1.03 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
{
"applications": {
"gecko": {
"id": "opentabsnexttocurrent@sblask",
"strict_min_version": "57.0"
}
},
"author": "Sebastian Blask",
"background": {
"scripts": [
"browser-polyfill.js",
"background.js"
]
},
"commands": {
"open-new-tab-at-default-location": {
"description": "Open new tab at default location",
"suggested_key": {
"default": "Ctrl+Y",
"windows": "Ctrl+Shift+Y"
}
}
},
"description": "Open new tabs to the right of the current one.",
"homepage_url": "https://github.com/sblask/webextension-open-tabs-next-to-current",
"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": "Open Tabs Next to Current",
"permissions": [
"sessions"
],
"version": "2.0.14"
}