Chrome app

This commit is contained in:
Gustavo Maximiliano Cortez 2015-04-16 12:24:35 -03:00
commit 609c549e97
7 changed files with 114 additions and 0 deletions

View file

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