-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·44 lines (44 loc) · 1.24 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
44
{
"manifest_version": 2,
"name": "Moonlight Game Streaming",
"short_name": "Moonlight",
"version": "0.6.3",
"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/style.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": "*" },
"tcp": {"connect": "*"} // 성환수정
},
"permissions": [
"storage",
"unlimitedStorage",
"pointerLock",
"system.network",
"fullscreen",
"overrideEscFullscreen", {
"socket": [
"tcp-connect:",
"tcp-listen:*:*", // 성환수정
"resolve-host",
"udp-bind:*:*",
"udp-send-to:*:*"
] }
],
"requirements": {
"3D": {
"features": ["webgl"]
}
}
}