-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
54 lines (54 loc) · 1.42 KB
/
manifest.json
File metadata and controls
54 lines (54 loc) · 1.42 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
{
"manifest_version": 3,
"name": "WebSocket Monitor",
"description": "Monitors WebSocket traffic and forwards it to OBS.",
"version": "1.0",
"permissions": [
"debugger",
"activeTab",
"scripting",
"webRequest",
"storage"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/icon_inactive_16.png",
"32": "images/icon_inactive_32.png",
"48": "images/icon_inactive_48.png",
"128": "images/icon_inactive_128.png"
}
},
"icons": {
"16": "images/icon_inactive_16.png",
"32": "images/icon_inactive_32.png",
"48": "images/icon_inactive_48.png",
"128": "images/icon_inactive_128.png"
},
"options_page": "options.html",
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "Activate WebSocket Monitoring"
}
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["crypto-js.min.js"]
}
]
}