Files
chrome-extensions-samples/apps/samples/gdrive/js/background.js
Sam Thorogood 8af19b8ca9 move
2020-12-04 09:18:01 +11:00

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.
});