mirror of
https://github.com/moparisthebest/mail
synced 2024-11-25 18:32:20 -05:00
14 lines
264 B
JavaScript
14 lines
264 B
JavaScript
'use strict';
|
|
|
|
chrome.app.runtime.onLaunched.addListener(function() {
|
|
|
|
// open chrome app in new window
|
|
chrome.app.window.create('index.html', {
|
|
id: '0',
|
|
innerBounds: {
|
|
width: 1280,
|
|
height: 800
|
|
}
|
|
});
|
|
|
|
}); |