Files
chrome-extensions-samples/apps/samples/ioio/background.js
Sam Thorogood 8af19b8ca9 move
2020-12-04 09:18:01 +11:00

10 lines
187 B
JavaScript

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