-
Notifications
You must be signed in to change notification settings - Fork 164
/
manifest.json
43 lines (43 loc) · 1.18 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
{
"manifest_version": 2,
"name": "Moonlight Game Streaming",
"short_name": "Moonlight",
"version": "0.10.27",
"description": "Open-source client for NVIDIA GameStream",
"icons": {
"128": "icons/icon128.png",
"48": "icons/icon48.png",
"32": "icons/icon32.png",
"16": "icons/icon16.png"
},
"app": {
"background": {
"persistent": false,
"css": ["static/css/material.min.css", "static/css/material-icons.css", "static/css/style.css", "static/css/roboto.css"],
"scripts": ["static/js/jquery-2.2.0.min.js", "static/js/material.min.js", "static/js/common.js", "static/js/background.js"]
}
},
"sockets": {
"udp": { "bind": "*", "send": "*" }
},
"permissions": [
"storage",
"unlimitedStorage",
"pointerLock",
"system.network",
"fullscreen",
"power",
"overrideEscFullscreen", {
"socket": [
"tcp-connect",
"resolve-host",
"udp-bind:*:*",
"udp-send-to:*:*"
] }
],
"requirements": {
"3D": {
"features": ["webgl"]
}
}
}