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

9 lines
220 B
JavaScript

chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html',
{
"id": "mainWindow",
"resizable": false,
"innerBounds": { "width": 360, "height": 540 }
});
});