mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-04 14:49:44 +07:00
10 lines
197 B
JavaScript
10 lines
197 B
JavaScript
chrome.app.runtime.onLaunched.addListener(function() {
|
|
chrome.app.window.create('permissions.html', {
|
|
id: 'permissions',
|
|
innerBounds: {
|
|
width: 640,
|
|
height: 480
|
|
}
|
|
});
|
|
})
|