-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·47 lines (47 loc) · 1.09 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
{
"name": "Reckoning",
"version": "0.1",
"manifest_version": 3,
"icons": {
"128": "assets/reckon.png"
},
"options_ui": {
"page": "pages/config.html",
"open_in_tab": true
},
"permissions": [
"activeTab", "notifications", "tabs", "tabGroups", "storage"
],
"background": {
"service_worker": "js/sw.js"
},
"commands": {
"dedupwindow": {
"description": "Dedup tabs in window",
"suggested_key": {
"default": "Alt+Shift+W"
}
},
"dedupthistab": {
"description": "Dedup this tab"
},
"dedupchrome": {
"description": "Dedup chrome",
"suggested_key": {
"default": "Ctrl+Shift+8"
}
},
"grouptabs": {
"description": "Create Tab Groups based on regex",
"suggested_key": {
"default": "Alt+Shift+T"
}
},
"popit": {
"description": "Kill tabs based on regex against URL AND title",
"suggested_key": {
"default": "Alt+Shift+X"
}
}
}
}