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