]> git.wh0rd.org - chrome-ext/web-power-switch.git/blobdiff - manifest.json
fix dark theme
[chrome-ext/web-power-switch.git] / manifest.json
index 65a0b897e18cf699870826a3bd9e67dfd10b9a08..305d41ba0bd0c717e4dd55aaf8693d3f29b2e9ec 100644 (file)
@@ -1,13 +1,13 @@
 {
-  "manifest_version": 2,
-  "minimum_chrome_version": "22",
+  "manifest_version": 3,
+  "minimum_chrome_version": "100",
   "name": "Web Power Switch Manager",
-  "version": "2.0",
+  "version": "5.0",
   "description": "Quickly control Web Power Switches",
   "icons": {
     "128": "images/outlet-128x128.png"
   },
-  "browser_action": {
+  "action": {
     "default_icon": {
       "19": "images/outlet-19x19.png",
       "38": "images/outlet-38x38.png"
     "default_title": "Control Your Switch",
     "default_popup": "popup.html"
   },
-  "options_page": "options.html",
+  "options_ui": {
+    "page": "options.html",
+    "open_in_tab": false
+  },
   "permissions": [
     "storage"
   ],
-  "optional_permissions": [
+  "optional_host_permissions": [
     "http://*/"
   ]
 }