2013-06-04 15:36:13 -04:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
chrome.app.runtime.onLaunched.addListener(function() {
|
2013-09-04 12:39:26 -04:00
|
|
|
chrome.app.window.create('index.html', {
|
2013-09-03 09:25:02 -04:00
|
|
|
'bounds': {
|
|
|
|
'width': 1024,
|
|
|
|
'height': 768
|
|
|
|
}
|
|
|
|
});
|
2013-06-04 15:36:13 -04:00
|
|
|
});
|