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

11 lines
213 B
JavaScript

chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
innerBounds: {
width: 800,
height: 600,
minWidth: 200,
minHeight: 200,
}
});
});