mirror of
https://github.com/moparisthebest/mail
synced 2024-10-31 23:35:03 -04:00
10 lines
221 B
JavaScript
10 lines
221 B
JavaScript
|
'use strict';
|
||
|
|
||
|
chrome.app.runtime.onLaunched.addListener(function() {
|
||
|
chrome.app.window.create('integration/index.html', {
|
||
|
'bounds': {
|
||
|
'width': 1024,
|
||
|
'height': 768
|
||
|
}
|
||
|
});
|
||
|
});
|