]> git.wh0rd.org - chrome-ext/music-player-client.git/blob - manifest.json
compile javascript files with the closure compiler
[chrome-ext/music-player-client.git] / manifest.json
1 {
2 "manifest_version": 2,
3 "minimum_chrome_version": "24",
4 "name": "Music Player Client",
5 "version": "2.0",
6 "description": "Control a Music Player Daemon (MPD)",
7 "icons": {
8 "128": "images/icon-128x128.png"
9 },
10 "app": {
11 "background": {
12 "scripts": ["launcher.js"]
13 }
14 },
15 "offline_enabled": true,
16 "permissions": [
17 "storage",
18 {"socket": ["tcp-connect"]}
19 ]
20 }