webogram-i2p/app/js/background.js

19 lines
460 B
JavaScript
Raw Normal View History

2014-01-05 20:07:11 +04:00
/*!
2014-03-02 17:41:10 +01:00
* Webogram v0.0.19 - 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
*/
chrome.app.runtime.onLaunched.addListener(function(launchData) {
chrome.app.window.create('../index.html', {
bounds: {
width: 900,
2014-01-05 20:07:11 +04:00
height: 700
},
minWidth: 320,
2014-02-02 23:15:56 +04:00
minHeight: 400,
2014-01-05 20:07:11 +04:00
frame: 'chrome'
});
2014-02-13 19:37:20 +04:00
});