-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
42 lines (42 loc) · 1.2 KB
/
Copy pathmanifest.json
File metadata and controls
42 lines (42 loc) · 1.2 KB
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
{
"manifest_version": 3,
"name": "__MSG_extName__",
"version": "1.3.0",
"author": "77-223255",
"homepage_url": "https://github.com/77-223255/VTS",
"minimum_chrome_version": "102",
"default_locale": "en",
"description": "__MSG_extDescription__",
"permissions": ["tabs", "scripting", "commands", "storage", "alarms"],
"host_permissions": ["<all_urls>"],
"background": { "service_worker": "background.js" },
"action": {
"default_title": "__MSG_extName__",
"default_popup": "popup.html"
},
"commands": {
"_execute_action": {
"suggested_key": { "default": "Alt+W", "mac": "Alt+W" },
"description": "Open settings popup"
},
"open-overlay": {
"suggested_key": { "default": "Alt+Q", "mac": "Alt+Q" },
"description": "Open tab switcher"
},
"navigate-up": {
"suggested_key": { "default": "Alt+Shift+Q", "mac": "Alt+Shift+Q" },
"description": "Navigate up in tab switcher"
}
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["content-script.js"],
"css": ["overlay.css"],
"run_at": "document_idle"
}],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}