2014-01-05 20:07:11 +04:00
|
|
|
/*!
|
2017-05-11 22:41:06 +03:00
|
|
|
* Webogram v0.5.6 - messaging web application for MTProto
|
2014-01-05 20:07:11 +04:00
|
|
|
* https://github.com/zhukov/webogram
|
|
|
|
* Copyright (C) 2014 Igor Zhukov <igor.beatle@gmail.com>
|
|
|
|
* https://github.com/zhukov/webogram/blob/master/LICENSE
|
|
|
|
*/
|
|
|
|
|
2016-06-28 19:40:53 +03:00
|
|
|
chrome.app.runtime.onLaunched.addListener(function (launchData) {
|
2014-01-05 20:07:11 +04:00
|
|
|
chrome.app.window.create('../index.html', {
|
2016-06-28 19:40:53 +03:00
|
|
|
id: 'webogram-chat',
|
2014-10-01 15:13:50 +04:00
|
|
|
innerBounds: {
|
2014-05-08 21:06:08 +01:00
|
|
|
width: 1000,
|
2014-01-05 20:07:11 +04:00
|
|
|
height: 700
|
|
|
|
},
|
2014-02-10 21:25:21 +04:00
|
|
|
minWidth: 320,
|
2014-02-02 23:15:56 +04:00
|
|
|
minHeight: 400,
|
2017-05-10 10:20:02 -05:00
|
|
|
frame: { color: "#5682a3" }
|
2016-06-28 19:40:53 +03:00
|
|
|
})
|
|
|
|
})
|