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

15 lines
314 B
JavaScript

chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create("frameless_window.html",
{ frame: "none",
id: "framelessWinID",
innerBounds: {
width: 360,
height: 300,
left: 600,
minWidth: 220,
minHeight: 220
}
}
);
});