mirror of
https://github.com/moonlight-stream/moonlight-chrome.git
synced 2025-08-17 16:46:31 +00:00
30 lines
662 B
JSON
30 lines
662 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Moonlight",
|
|
"version": "0.01",
|
|
"description": "A Moonlight streaming plugin for Google Chrome",
|
|
"icons": {
|
|
"128": "icons/icon128.png",
|
|
"48": "icons/icon48.png",
|
|
"32": "icons/icon32.png",
|
|
"16": "icons/icon16.png"
|
|
},
|
|
"app": {
|
|
"background": {
|
|
"persistent": false,
|
|
"scripts": ["background.js"]
|
|
}
|
|
},
|
|
"permissions": [
|
|
"pointerLock",
|
|
"fullscreen", {
|
|
"socket": [
|
|
"tcp-connect",
|
|
"resolve-host",
|
|
"udp-bind:*:*",
|
|
"udp-send-to:*:*"
|
|
] }
|
|
]
|
|
}
|
|
|