forked from kainino0x/holoplay-webxr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
33 lines (33 loc) · 861 Bytes
/
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
{
"name": "Unofficial WebXR for HoloPlay",
"short_name": "Unofficial WebXR for HoloPlay",
"version": "0.0.1",
"minimum_chrome_version": "10.0",
"description": "Unofficial WebXR implementation for HoloPlay holographic displays, such as Looking Glass.",
"homepage_url": "https://github.com/kainino0x/holoplay-webxr",
"author": "Kai Ninomiya",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"file://*/*",
"http://*/*",
"https://*/*",
"storage"
],
"content_scripts": [{
"matches": [
"file://*/*",
"http://*/*",
"https://*/*"
],
"js": [
"build/extension/holoplay-webxr-document_start.js"
],
"run_at": "document_start",
"all_frames": true
}],
"manifest_version": 2
}