-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
56 lines (56 loc) · 1.37 KB
/
manifest.json
File metadata and controls
56 lines (56 loc) · 1.37 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"manifest_version": 3,
"name": "WebIn",
"description": "A floating overlay for instant access to your favorite web applications.",
"version": "2.0.0",
"permissions": ["scripting", "tabs", "storage", "activeTab"],
"host_permissions": ["<all_urls>", "*://*/*"],
"background": {
"service_worker": "background.js"
},
"commands": {
"launch_overlay": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "Launch the WebIn Overlay"
}
},
"web_accessible_resources": [
{
"resources": [
"webin/config.js",
"webin/state.js",
"webin/styles.js",
"webin/styles2.js",
"webin/styles3.js",
"webin/modals.js",
"webin/ui.js",
"webin/tabs.js",
"webin/events.js",
"webin/inject.js",
"webin/popup-inject.js"
],
"matches": ["<all_urls>"]
}
],
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"96": "images/icon-96.png"
},
"action": {
"default_icon": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"96": "images/icon-96.png"
},
"default_title": "WebIn"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
}
}