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.window.create('index.html', {
'bounds': {
'width': 400,
'height': 500
}
});
chrome.app.window.create('index.html', {
'bounds': {
'width': 400,
'height': 500
}
});
});

View File

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