-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (46 loc) · 1.22 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
{
"name": "Tab Bankruptcy",
"version": "0.1",
"description": "Copy your Chrome tabs as rich text to paste into your notes",
"manifest_version": 2,
"background": {
"scripts": ["lib.js", "background.js"],
"persistent": false
},
"content_scripts": [{ "matches": ["<all_urls>"], "js": ["toggleIcon.js"] }],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon-16.png",
"32": "icon-32.png",
"256": "icon.png"
}
},
"permissions": ["tabs", "clipboardWrite"],
"commands": {
"copy-tab": {
"suggested_key": {
"default": "Alt+C"
},
"description": "Copy current tab and title to the clipboard"
},
"copy-and-close-tab": {
"suggested_key": {
"default": "Alt+W"
},
"description": "Copy current tab and title to the clipboard and close the tab"
},
"copy-all-tabs": {
"suggested_key": {
"default": "Alt+Shift+C"
},
"description": "Copy all tabs and title to the clipboard"
},
"copy-and-close-all-tabs": {
"suggested_key": {
"default": "Alt+Shift+W"
},
"description": "Copy all tabs and titles to the clipboard and close all tabs"
}
}
}