-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmanifest.json
More file actions
26 lines (26 loc) · 658 Bytes
/
manifest.json
File metadata and controls
26 lines (26 loc) · 658 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
{
"manifest_version": 3,
"name": "Chrome Show Tab Numbers",
"version": "1.6.0",
"description": "A Chromium extension to show tab numbers.",
"icons": {
"128": "assets/icon128.png"
},
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"permissions": ["contextMenus", "scripting", "storage", "tabGroups", "tabs"],
"host_permissions": ["<all_urls>"],
"commands": {
"toggle-all-tabs": {
"description": "Toggle tab numbering for all tabs"
},
"toggle-current-tab": {
"description": "Toggle tab numbering for current tab"
}
}
}