1
0
mirror of https://github.com/moparisthebest/mail synced 2025-01-31 15:10:13 -05:00
mail/src/background.js

11 lines
243 B
JavaScript

'use strict';
// open chrome app in new window
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('chrome.html', {
'bounds': {
'width': 1024,
'height': 768
}
});
});