mail/gmail-test-proxy/background.js

10 lines
171 B
JavaScript

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