8 lines
174 B
JavaScript
8 lines
174 B
JavaScript
|
chrome.app.runtime.onLaunched.addListener(function() {
|
||
|
chrome.app.window.create('index.html', {
|
||
|
'outerBounds': {
|
||
|
'width': 400,
|
||
|
'height': 500
|
||
|
}
|
||
|
});
|
||
|
});
|