-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (34 loc) · 816 Bytes
/
manifest.json
File metadata and controls
34 lines (34 loc) · 816 Bytes
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
{
"manifest_version": 3,
"name": "TabGrid",
"version": "0.0.1",
"author": "nityam",
"description": "Groups open tabs into clusters using AI.",
"icons": {
"16": "icon/boxes.png",
"48": "icon/boxes.png",
"128": "icon/boxes.png"
},
"permissions": ["tabs", "tabGroups", "storage"],
"host_permissions": [
"<all_urls>",
"https://openrouter.ai/*"
],
"background": {
"service_worker": "service.js",
"type": "module"
},
"action": {
"default_title": "TabGrid Extension | Press Ctrl+Shift+X (Cmd+Shift+X on Mac)"
},
"commands": {
"toggle-group-tabs": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"mac": "Command+Shift+X"
},
"description": "Group or ungroup all tabs in the current window"
}
},
"incognito": "split"
}