interval-timer/js/start.js

8 lines
174 B
JavaScript
Raw Normal View History

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