mirror of
https://github.com/moonlight-stream/moonlight-chrome.git
synced 2026-06-17 22:32:06 +00:00
now with fullscreen support
This commit is contained in:
@@ -0,0 +1,8 @@
|
|||||||
|
chrome.app.runtime.onLaunched.addListener(function() {
|
||||||
|
chrome.app.window.create('index.html', {
|
||||||
|
'bounds': {
|
||||||
|
'width': 400,
|
||||||
|
'height': 500
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
+3
-4
@@ -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"]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user