mail/src/background.js

16 lines
352 B
JavaScript

'use strict';
chrome.app.runtime.onLaunched.addListener(function() {
chrome.runtime.getPlatformInfo(function() {
// open chrome app in new window
chrome.app.window.create('index.html', {
id: '0',
innerBounds: {
width: 1280,
height: 800
}
});
});
});