mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-30 13:59:35 +07:00
13 lines
252 B
JavaScript
13 lines
252 B
JavaScript
chrome.app.runtime.onLaunched.addListener(function() {
|
|
chrome.app.window.create('main.html', {
|
|
id: 'mainWindow',
|
|
frame: 'none',
|
|
innerBounds: {
|
|
width: 440,
|
|
height: 440,
|
|
minWidth: 440,
|
|
minHeight: 200
|
|
}
|
|
});
|
|
});
|