webogram-i2p/app/js/background.js
2014-03-12 23:25:08 +01:00

19 lines
460 B
JavaScript

/*!
* Webogram v0.0.20 - 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', {
bounds: {
width: 900,
height: 700
},
minWidth: 320,
minHeight: 400,
frame: 'chrome'
});
});