mirror of
https://github.com/moonlight-stream/moonlight-chrome.git
synced 2025-08-18 00:56:38 +00:00
now with fullscreen support
This commit is contained in:
parent
ea94320c54
commit
989195d625
8
background.js
Normal file
8
background.js
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
chrome.app.runtime.onLaunched.addListener(function() {
|
||||||
|
chrome.app.window.create('index.html', {
|
||||||
|
'bounds': {
|
||||||
|
'width': 400,
|
||||||
|
'height': 500
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
@ -1,9 +1,8 @@
|
|||||||
{
|
{
|
||||||
|
"manifest_version": 2,
|
||||||
"name": "Moonlight Chrome",
|
"name": "Moonlight Chrome",
|
||||||
"version": "0.01",
|
"version": "0.01",
|
||||||
"manifest_version": 2,
|
|
||||||
"description": "A Moonlight streaming plugin for Google Chrome",
|
"description": "A Moonlight streaming plugin for Google Chrome",
|
||||||
"offline_enabled": true,
|
|
||||||
"icons": {
|
"icons": {
|
||||||
"128": "icons/icon128.png",
|
"128": "icons/icon128.png",
|
||||||
"48": "icons/icon48.png",
|
"48": "icons/icon48.png",
|
||||||
@ -12,9 +11,9 @@
|
|||||||
},
|
},
|
||||||
"app": {
|
"app": {
|
||||||
"background": {
|
"background": {
|
||||||
"persistent": false
|
"scripts": ["background.js"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"permissions": []
|
"permissions": ["fullscreen", "alwaysOnTopWindows"]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user