-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
43 lines (43 loc) · 1.21 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
{
"name": "Zet",
"version": "0.2.0",
"description": "Makes searching for tabs, muting-unmuting them, etc. a joy. Supercharge your Chrome experience.",
"manifest_version": 2,
"permissions": ["activeTab", "tabs"],
"background": {
"scripts": ["dist/background.js"],
"persistent": false
},
"web_accessible_resources": ["images/*.svg", "images/apps/*.svg", "zet.html"],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"commands": {
"toggle-visibility": {
"suggested_key": {
"default": "Ctrl+Shift+Space",
"mac": "Command+Shift+Space"
},
"description": "Toggle Zet's visibility"
},
"jump-back-to-previous-tab": {
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "Command+Shift+U"
},
"description": "Jump back to previous tab"
}
},
"icons": {
"16": "images/logo/bolt16.png",
"48": "images/logo/bolt48.png",
"128": "images/logo/bolt128.png"
},
"page_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/logo/bolt16.png",
"32": "images/logo/bolt32.png",
"48": "images/logo/bolt48.png",
"128": "images/logo/bolt128.png"
}
}
}