-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (33 loc) · 834 Bytes
/
manifest.json
File metadata and controls
33 lines (33 loc) · 834 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
27
28
29
30
31
32
33
{
"name": "Enable Youtube PC VR in Chromium browsers",
"version": "1.0.1",
"description": "Enables PC-VR for non-3D spherical youtube videos - Tested on HTC Vive Cosmos",
"manifest_version": 3,
"author": "feedthedogs",
"content_scripts": [
{
"matches": [ "*://*.youtube.com/*",
"*://*.googlevideo.com/*"],
"js": ["script.js"]
}
],
"permissions": [
"declarativeNetRequest"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "useagent",
"enabled": true,
"path": "rules.json"
}
]
},
"icons": {
"128": "icon.png"
},
"host_permissions": [
"*://*.youtube.com/*",
"*://*.googlevideo.com/*"
]
}