20 lines
489 B
JavaScript
20 lines
489 B
JavaScript
/*!
|
|
* Webogram v0.3.9 - messaging web application for MTProto
|
|
* https://github.com/zhukov/webogram
|
|
* Copyright (C) 2014 Igor Zhukov <igor.beatle@gmail.com>
|
|
* https://github.com/zhukov/webogram/blob/master/LICENSE
|
|
*/
|
|
|
|
chrome.app.runtime.onLaunched.addListener(function(launchData) {
|
|
chrome.app.window.create('../index.html', {
|
|
id: 'webogram-chat',
|
|
innerBounds: {
|
|
width: 1000,
|
|
height: 700
|
|
},
|
|
minWidth: 320,
|
|
minHeight: 400,
|
|
frame: 'chrome'
|
|
});
|
|
});
|