1
0
mirror of https://github.com/moparisthebest/mail synced 2025-02-16 23:20:09 -05:00
mail/src/background.js
2013-06-25 15:34:39 +02:00

10 lines
173 B
JavaScript

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