Files
chrome-extensions-samples/samples/hello-world-sync/main.js

10 lines
196 B
JavaScript

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