moonlight-chrome/manifest.json
R. Aidan Campbell b98e354423 README and build updates
- Proper icons for OSX and Windows
2017-12-10 20:02:09 -07:00

88 lines
1.9 KiB
JSON

{
"manifest_version":2,
"name":"Moonlight Game Streaming",
"short_name":"Moonlight",
"version":"0.0.1",
"description":"Open-source client for NVIDIA GameStream",
"build":{
"nwFlavor":"sdk",
"excludes":[
"**/h264bitstream/**/*",
"**/libgamestream/**/*",
"**/moonlight-common-c/**/*",
"**/opus/**/*",
"**/ports/**/*",
"**/*.cpp",
"**/*.hpp",
"**/*.c",
"**/*.h",
"**/*.md",
"**/*.mk",
"make.bat",
"Makefile",
"package.json"
],
"appId":"com.moonlight.moonlight-native",
"strippedProperties":[
"build",
"scripts",
"devDependencies"
],
"win":{
"icon":"icons/windows.ico"
},
"mac":{
"icon":"icons/macos.icns",
"plistStrings":{
"CFBundleIdentifier":"com.moonlight.moonlight-native"
}
}
},
"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"
]
}
}
}