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