mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-29 13:49:41 +07:00
9 lines
186 B
JavaScript
9 lines
186 B
JavaScript
chrome.app.runtime.onLaunched.addListener(function (arg) {
|
|
chrome.app.window.create(
|
|
'main.html',
|
|
{
|
|
id: "mainwin",
|
|
innerBounds: { width:780, height:490}
|
|
});
|
|
});
|