mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-03 14:39:37 +07:00
10 lines
210 B
JavaScript
Executable File
10 lines
210 B
JavaScript
Executable File
chrome.app.runtime.onLaunched.addListener(function() {
|
|
chrome.app.window.create('index.html',
|
|
{ "id": "identitywin",
|
|
"innerBounds": {
|
|
"width": 454,
|
|
"height": 540
|
|
}
|
|
});
|
|
});
|