-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (32 loc) · 886 Bytes
/
manifest.json
File metadata and controls
32 lines (32 loc) · 886 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
{
"manifest_version": 2,
"name": "TabbyBARA",
"version": "1.0",
"description": "Adds a shortcut (Ctrl+Shift+E) to open a new tab in the same tab group as the current tab - right after the currently active tab.",
"permissions": [
"tabs",
"cookies",
"contextualIdentities",
"tabGroups"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"commands": {
"open-container-tab": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"mac": "Command+Shift+E"
},
"description": "Open a new tab in current tab group - right after the currently active tab"
}
},
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
}