mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
9 lines
220 B
JavaScript
9 lines
220 B
JavaScript
chrome.app.runtime.onLaunched.addListener(function() {
|
|
chrome.app.window.create('index.html',
|
|
{
|
|
"id": "mainWindow",
|
|
"resizable": false,
|
|
"innerBounds": { "width": 360, "height": 540 }
|
|
});
|
|
});
|