moonlight-chrome/manifest.json
R. Aidan Campbell e3d000e8ed Non-functional box art caching
- appears to cache fine in memory
- does NOT want to serialize to chrome.storage.local
- promises are confusing
2016-07-09 21:24:19 -04:00

44 lines
1.1 KiB
JSON

{
"manifest_version": 2,
"name": "Moonlight Game Streaming",
"short_name": "Moonlight",
"version": "0.4",
"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": "*" }
},
"permissions": [
"storage",
"unlimitedStorage",
"pointerLock",
"system.network",
"fullscreen",
"overrideEscFullscreen", {
"socket": [
"tcp-connect",
"resolve-host",
"udp-bind:*:*",
"udp-send-to:*:*"
] }
],
"requirements": {
"3D": {
"features": ["webgl"]
}
}
}