-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
manifest-firefox.json
65 lines (65 loc) · 1.6 KB
/
manifest-firefox.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
{
"name": "Tab Manager Plus for Firefox",
"short_name": "Tab Manager+",
"version": "6.0.0",
"manifest_version": 2,
"description": "Quickly find open tabs, see all windows in one view, find duplicates and limit tabs per window. The best Tab Manager for Firefox.",
"author": "stefanXO",
"icons": {
"16": "images/browsers16.png",
"48": "images/browsers48.png",
"64": "images/browsers64.png",
"128": "images/browsers128.png",
"256": "images/browsers256.png"
},
"permissions": [
"tabs",
"contextMenus",
"storage"
],
"incognito":"spanning",
"background": {
"scripts": ["vendor/babel-polyfill.js", "dist/background.js"],
"persistent": true
},
"browser_action": {
"default_icon": {
"16": "images/browsers16.png",
"48": "images/browsers48.png",
"64": "images/browsers64.png",
"128": "images/browsers128.png",
"256": "images/browsers256.png"
}
},
"sidebar_action": {
"default_icon": {
"16": "images/browsers16.png",
"48": "images/browsers48.png",
"64": "images/browsers64.png",
"128": "images/browsers128.png",
"256": "images/browsers256.png"
},
"default_title" : "Tab Manager Plus",
"default_panel": "popup.html?panel=true"
},
"options_ui": {
"page": "options.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+M",
"windows": "Ctrl+Shift+M",
"mac": "Command+Shift+M"
}
},
"switch_to_previous_active_tab": {
"suggested_key": {
"default": "Ctrl+Shift+Space",
"windows": "Ctrl+Shift+Space",
"mac": "Command+Shift+Space"
},
"description": "Switches to previously active tab"
}
}
}