cleaning unused code and fixing indentations

This commit is contained in:
Aidan Campbell 2016-02-13 05:00:29 -05:00
parent 989195d625
commit 783b1a5799
2 changed files with 23 additions and 22 deletions

View File

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

View File

@ -1,19 +1,20 @@
{ {
"manifest_version": 2, "manifest_version": 2,
"name": "Moonlight Chrome", "name": "Moonlight Chrome",
"version": "0.01", "version": "0.01",
"description": "A Moonlight streaming plugin for Google Chrome", "description": "A Moonlight streaming plugin for Google Chrome",
"icons": { "icons": {
"128": "icons/icon128.png", "128": "icons/icon128.png",
"48": "icons/icon48.png", "48": "icons/icon48.png",
"32": "icons/icon32.png", "32": "icons/icon32.png",
"16": "icons/icon16.png" "16": "icons/icon16.png"
}, },
"app": { "app": {
"background": { "background": {
"scripts": ["background.js"] "persistent": false,
} "scripts": ["background.js"]
}, }
"permissions": ["fullscreen", "alwaysOnTopWindows"] },
"permissions": ["fullscreen"]
} }