-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmanifest.json
71 lines (71 loc) · 1.71 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"manifest_version": 2,
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "60.0"
}
},
"name": "__MSG_ext_name__",
"version": "3.0",
"description": "__MSG_ext_description__",
"default_locale": "en",
"homepage_url": "https://github.com/JannesMeyer/TabAttack",
"permissions": [
"tabs",
"storage",
"clipboardWrite",
"contextMenus",
"activeTab",
"chrome://favicon/"
],
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png",
"128": "icons/icon.svg"
},
"background": {
"page": "background.html"
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"browser_action": {
"default_icon": "icons/transparent.png",
"default_title": "__MSG_icon_tooltip__"
},
"sidebar_action": {
"default_icon": "icons/firefox/tab.svg",
"default_title": "Tabs",
"default_panel": "popup.html?t=Sidebar",
"browser_style": false,
"open_at_install": false
},
"commands": {
"_execute_browser_action": {
"suggested_key": { "default": "Alt+Q" }
},
"open_tab_list": {
"description": "Open Tab List",
"suggested_key": { "default": "Shift+Alt+Q" }
},
"copy_tab_as_markdown": {
"description": "__MSG_shortcut_copy_tab_as_markdown__"
},
"move_tab_left": {
"suggested_key": { "default": "Ctrl+Shift+Comma" },
"description": "__MSG_shortcut_move_tab_left__"
},
"move_tab_right": {
"suggested_key": { "default": "Ctrl+Shift+Period" },
"description": "__MSG_shortcut_move_tab_right__"
},
"duplicate_tab": {
"description": "__MSG_shortcut_duplicate_tab__"
},
"pin_tab": {
"description": "__MSG_shortcut_pin_tab__"
}
}
}