]> git.wh0rd.org - chrome-ext/web-power-switch.git/blob - manifest.json
options: switch to new chrome options page
[chrome-ext/web-power-switch.git] / manifest.json
1 {
2 "manifest_version": 2,
3 "minimum_chrome_version": "41",
4 "name": "Web Power Switch Manager",
5 "version": "3.0",
6 "description": "Quickly control Web Power Switches",
7 "icons": {
8 "128": "images/outlet-128x128.png"
9 },
10 "browser_action": {
11 "default_icon": {
12 "19": "images/outlet-19x19.png",
13 "38": "images/outlet-38x38.png"
14 },
15 "default_title": "Control Your Switch",
16 "default_popup": "popup.html"
17 },
18 "options_ui": {
19 "page": "options.html",
20 "chrome_style": true
21 },
22 "permissions": [
23 "storage"
24 ],
25 "optional_permissions": [
26 "http://*/"
27 ]
28 }