mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-29 13:49:41 +07:00
15 lines
314 B
JavaScript
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
|
|
}
|
|
}
|
|
);
|
|
});
|