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