]> git.wh0rd.org - chrome-ext/web-power-switch.git/blob - manifest.json
fix dark theme
[chrome-ext/web-power-switch.git] / manifest.json
1 {
2 "manifest_version": 3,
3 "minimum_chrome_version": "100",
4 "name": "Web Power Switch Manager",
5 "version": "5.0",
6 "description": "Quickly control Web Power Switches",
7 "icons": {
8 "128": "images/outlet-128x128.png"
9 },
10 "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 "open_in_tab": false
21 },
22 "permissions": [
23 "storage"
24 ],
25 "optional_host_permissions": [
26 "http://*/"
27 ]
28 }