Creating a chrome app

This commit is contained in:
Matias Pando 2014-11-27 18:05:17 -03:00
commit bbd00cf2d6
4 changed files with 23 additions and 9 deletions

View file

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