1
0
mirror of https://github.com/moparisthebest/mail synced 2025-02-07 10:30:18 -05:00
mail/gmail-test-proxy/background.js
2013-08-02 13:21:20 +02:00

10 lines
171 B
JavaScript

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