now with fullscreen support

This commit is contained in:
Aidan Campbell 2016-02-13 04:37:55 -05:00
parent ea94320c54
commit 989195d625
2 changed files with 11 additions and 4 deletions

8
background.js Normal file
View File

@ -0,0 +1,8 @@
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
'bounds': {
'width': 400,
'height': 500
}
});
});

View File

@ -1,9 +1,8 @@
{
"manifest_version": 2,
"name": "Moonlight Chrome",
"version": "0.01",
"manifest_version": 2,
"description": "A Moonlight streaming plugin for Google Chrome",
"offline_enabled": true,
"icons": {
"128": "icons/icon128.png",
"48": "icons/icon48.png",
@ -12,9 +11,9 @@
},
"app": {
"background": {
"persistent": false
"scripts": ["background.js"]
}
},
"permissions": []
"permissions": ["fullscreen", "alwaysOnTopWindows"]
}