mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-29 13:49:41 +07:00
16 lines
407 B
JavaScript
16 lines
407 B
JavaScript
/**
|
|
* Listens for the app launching then creates the window
|
|
*
|
|
* @see https://developer.chrome.com/docs/extensions/reference/app_runtime
|
|
* @see https://developer.chrome.com/docs/extensions/reference/app_window
|
|
*/
|
|
chrome.app.runtime.onLaunched.addListener(function() {
|
|
chrome.app.window.create('terminal.html', {
|
|
id: "mainwin",
|
|
innerBounds: {
|
|
width: 880,
|
|
height: 480
|
|
}
|
|
});
|
|
});
|