mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
1ff8528597
* Initial WebUI with sample functions * Changed folder structure * Light Reset Button and Translation fixing in Links * Indentation fixed * Reorganized menu and new function for setting effects * Styling fix
33 lines
704 B
JSON
33 lines
704 B
JSON
{
|
|
"name": "hyperion remote control",
|
|
"short_name": "hyperion remote",
|
|
"description": "Client side app for controlling the hyperion server over the local network.",
|
|
"author": {
|
|
"name": "Daniel Wiese",
|
|
"email": "gamadril.dev@gmail.com"
|
|
},
|
|
"manifest_version": 2,
|
|
"version": "0.6.0",
|
|
"minimum_chrome_version": "36",
|
|
"permissions": [
|
|
"storage", "system.network"
|
|
],
|
|
"app": {
|
|
"background": {
|
|
"scripts": ["js/background.js"]
|
|
}
|
|
},
|
|
"sockets": {
|
|
"tcp": {
|
|
"connect": "*"
|
|
},
|
|
"udp": {
|
|
"send": "*",
|
|
"bind": "*"
|
|
}
|
|
},
|
|
"icons": {
|
|
"128": "res/icon_128.png"
|
|
}
|
|
}
|