1
0
mirror of https://github.com/moparisthebest/mail synced 2025-02-19 20:31:48 -05:00
mail/src/background.js

10 lines
210 B
JavaScript
Raw Normal View History

'use strict';
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('chrome.html', {
2013-09-03 15:25:02 +02:00
'bounds': {
'width': 1024,
'height': 768
}
});
});