1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00
mail/src/background.js
2013-06-04 23:40:20 +02:00

10 lines
172 B
JavaScript

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