mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-02 14:29:37 +07:00
21 lines
445 B
JavaScript
21 lines
445 B
JavaScript
chrome.app.runtime.onLaunched.addListener(function(launchData) {
|
|
chrome.app.window.create('../main.html', {
|
|
id: "GDriveExample",
|
|
innerBounds: {
|
|
width: 500,
|
|
height: 600,
|
|
minWidth: 500,
|
|
minHeight: 600
|
|
},
|
|
frame: 'none'
|
|
});
|
|
});
|
|
|
|
chrome.runtime.onInstalled.addListener(function() {
|
|
console.log('installed');
|
|
});
|
|
|
|
chrome.runtime.onSuspend.addListener(function() {
|
|
// Do some simple clean-up tasks.
|
|
});
|