]> git.wh0rd.org - chrome-ext/music-player-client.git/blame - launcher.js
images: update small tile to try & pass CWS guidelines
[chrome-ext/music-player-client.git] / launcher.js
CommitLineData
50dafc4c
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('main.html', {
5 bounds: {
6 width: 300,
7 height: 120
8 }
9 });
10});