]> git.wh0rd.org Git - chrome-ext/music-player-client.git/blob - launcher.js
playlist/metadata: do not crash whilst connecting
[chrome-ext/music-player-client.git] / 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('main.html', {
5                 bounds: {
6                         width: 300,
7                         height: 120
8                 }
9         });
10 });