-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
117 lines (117 loc) · 4.73 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "A Wrench Menu",
"short_name": "A Wrench Menu",
"description": "Treasured multi-tool – a spanner within Chrome's works – the missing menu. ",
"version": "1.2.1",
"icons": {
"128": "rsrc/wrench.png",
"32": "rsrc/wrench.png"
},
"background": { "service_worker": "background.js" },
"action": {
"default_icon": "rsrc/wrench.png",
"default_title": "The Wrench",
"default_popup": "src/menu.html"
},
"commands": {
"01-pin-tab": {
"plural_description": "Pin Tabs",
"group":"Shortcuts", "order": 1, "hidden":true,
"icon": "push_pin",
"action": "pinTab",
"description": "Pin Tab (⌘⇧P) "
},
"02-pop-out-tab": {
"plural_description": "Move Tabs to Pop-ups",
"group":"Tab", "order": 1,
"icon": "open_in_new" ,
"action": "moveTabToPopUp",
"suggested_key": { "default": "Alt+Shift+P" },
"contexts":["page", "selection"],
"enabled": ["tab"],
"description": "Move Tab to Pop-up (⌥⇧P) "
},
"02-tab-to-window": {
"plural_description": "Move Tabs to New Window",
"group":"Tab", "order": 1, "hidden":true,
"icon": "tab",
"action": "moveTabToOwnWindow",
"contexts":["page", "selection"],
"enabled": ["tab"],
"description": "Move Tab to New Window (⌥⇧P) "
},
"03-pic-in-pic": {
"group":"Tab", "order": 2,
"icon": "picture_in_picture_alt",
"action": "pictureInPicture",
"suggested_key": { "default": "Alt+P"},
"contexts":["page", "selection"],
"description": "Picture in Picture Video (⌥P) "
},
"20-copy-link": {
"suggested_key": { "default": "Alt+Shift+C"},
"icon": "link",
"action": "copyLink",
"group":"Tab", "order": 0,
"contexts":["page", "selection"],
"plural_description": "Copy Titles with Links",
"description": "Copy Title with Link (⌥⇧C) "
},
"12-previous-tab": {
"group":"Shortcuts", "order": 4, "hidden":true,
"icon": "switch_right",
"action": "switchToPreviousTab",
"description": "Switch to Prior Tab (⌘E) "
},
"13-new-tab-right": {
"group":"Shortcuts", "order": 5, "hidden":true,
"icon": "add_circle_outline",
"action": "newTabToTheRight",
"description": "New Tab After This One (⌘T) "
},
"33-group-by-domain": {
"group":"Window", "order": 3,
"icon": "view_week",
"action": "groupTabsByDomain",
"description": "Group Tabs by Website (⌘G) "
},
"51-merge-windows": {
"icon": "dynamic_feed",
"action": "mergeWindows",
"contexts":["page"],
"group":"Window", "order": 1,
"description": "Merge All Windows (⌘⇧M) "
},
"53-remove-duplicates": {
"icon": "clear_all",
"action": "removeDuplicateTabs",
"contexts":["page"],
"group":"Window", "order": 2,
"description": "Clear Duplicate Tabs (⌘⇧W) "
},
"54-tab-cleanup": {
"icon": "merge_type",
"action": "tabCleanup",
"contexts":["page"],
"group":"Window", "order": 0, "hidden":true,
"description": "Merge and Group All (⌥⇧M) "
},
"55-discard-tabs": {
"icon": "nightlight",
"action": "discardBackgroundTabs",
"group":"Window", "order": 3,
"description": "Sleep Background Tabs (⌘⇧U) "
},
"90-close-downloads": {
"icon": "download",
"action": "closeDownloadsBar",
"group":"Shortcuts", "order": 4, "hidden":true,
"description": "Close Downloads Bar (⌘⇧D) "
},
"_execute_action": {"suggested_key": { "default": "Alt+W", "mac": "Alt+W"}}
},
"permissions":[ "scripting", "tabs", "activeTab", "tabGroups", "storage", "contextMenus" ],
"optional_permissions": ["downloads", "downloads.shelf"],
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmYXFaUpDibFHS46O7O7LCrALdsEcmgmTOZomKen7v66LF4uaOI1Q+/yTv9KwfuH58vbFfnPzpLajBWZSx5V6lD3BJbRDxw3nRh72MGSr4faMT63qAFl/tNgSiW1Z3bnchLl+TNC1VaUyx9kLWRehqX5l2nY/FintmqA5HiNEiONh9zCuHLcVKC8yfL9TZpP5OmDBzBcKyh+xQYAmlI1DLeRIZOvBbXLHGoAdWckMC4WRe+10C2fVoyG2E1YoXgbaW98sozG8B4w+U7d2eHSlKrAVNwl0f5b2u7WGvBbikCtD1yZz1bz1s3otM6hnRcJMpa9R4942OblfhwPiHsNyswIDAQAB",
"manifest_version": 3
}