Files
Sam Thorogood 8af19b8ca9 move
2020-12-04 09:18:01 +11:00

10 lines
185 B
JavaScript

chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
id: "mainwin",
innerBounds: {
width: 320,
height: 240
}
});
});