mail/src/background.js

14 lines
264 B
JavaScript
Raw Normal View History

'use strict';
chrome.app.runtime.onLaunched.addListener(function() {
2014-08-13 07:49:17 -04:00
2015-01-12 08:50:58 -05:00
// open chrome app in new window
chrome.app.window.create('index.html', {
id: '0',
innerBounds: {
width: 1280,
height: 800
}
2013-09-03 09:25:02 -04:00
});
2014-08-13 07:49:17 -04:00
});