mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-29 13:49:41 +07:00
9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
chrome.app.runtime.onLaunched.addListener(function() {
|
|
chrome.app.window.create(
|
|
"control-panel.html",
|
|
{
|
|
innerBounds: { width: 1060, height: 510, minWidth: 1060 }
|
|
});
|
|
});
|
|
|