8 lines
171 B
JavaScript
8 lines
171 B
JavaScript
chrome.app.runtime.onLaunched.addListener(function() {
|
|
chrome.app.window.create('index.html', {
|
|
'bounds': {
|
|
'width': 1024,
|
|
'height': 768
|
|
}
|
|
});
|
|
});
|