1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-15 05:35:05 -05:00
mail/src/background.js

10 lines
210 B
JavaScript

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