]> git.wh0rd.org - chrome-ext/wake-on-lan.git/blame - manifest.json
add port tips to the port field tooltip text
[chrome-ext/wake-on-lan.git] / manifest.json
CommitLineData
5b4622f6
MF
1{
2 "manifest_version": 2,
3 "minimum_chrome_version": "44",
4 "name": "Wake-On-Lan (WOL)",
71fd256f 5 "version": "0.2",
5b4622f6
MF
6 "description": "Wake up other computers with WOL magic packets",
7 "icons": {
8 "48": "images/icon-48x48.png",
9 "128": "images/icon-128x128.png"
10 },
11 "app": {
12 "background": {
13 "scripts": ["js/launcher.js"]
14 }
15 },
16 "offline_enabled": true,
17 "permissions": [
18 "storage"
19 ],
20 "sockets": {
21 "udp": {
22 "send": ["*"],
23 "bind": ["*"]
24 }
25 }
26}