1
0
mirror of https://github.com/moparisthebest/mail synced 2025-03-03 18:22:05 -05:00
mail/gmail-test-proxy/background.js

10 lines
171 B
JavaScript
Raw Normal View History

2013-08-02 13:21:20 +02:00
'use strict';
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('foo.html', {
'bounds': {
'width': 1024,
'height': 650
}
});
});