]> git.wh0rd.org - chrome-ext/crftp.git/blame - js/launcher.js
init
[chrome-ext/crftp.git] / js / launcher.js
CommitLineData
769a03c3
MF
1// Written by Mike Frysinger <vapier@gmail.com>. Released into the public domain. Suck it.
2
3chrome.app.runtime.onLaunched.addListener(function() {
4 chrome.app.window.create('html/main.html', {
5 minWidth: 640,
6 minHeight: 480,
7 });
8});