aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar BaherWY <baher.wael@gmail.com>2021-08-29 21:02:34 +0200
committerGravatar BaherWY <baher.wael@gmail.com>2021-08-29 21:02:34 +0200
commitbeae9509122d81e6f28d8967e29006d9cb970038 (patch)
tree9c3b3b91026fec1d40398297662cad42ef776813
parenta0d45bbdd44847b1811f66d2e1630994c7c877fb (diff)
Upgrade extension to manifest version 3
-rw-r--r--manifest.json9
1 files changed, 4 insertions, 5 deletions
diff --git a/manifest.json b/manifest.json
index 0f58369..0f51c30 100644
--- a/manifest.json
+++ b/manifest.json
@@ -1,7 +1,7 @@
{
- "manifest_version": 2,
+ "manifest_version": 3,
"name": "Disable keyboard shortcuts",
- "version": "1.0.0",
+ "version": "2.0.0",
"description": "Disable arbitrary keyboard shortcuts",
"icons": {
"48": "icon48.png",
@@ -9,8 +9,7 @@
},
"author": "Benjamin Barenblat <bbaren@google.com>",
"background": {
- "persistent": false,
- "scripts" : ["background.js"]
+ "service_worker" : "background.js"
},
"commands": {
"do-nothing0": { "description": "Do nothing" },
@@ -24,5 +23,5 @@
"do-nothing8": { "description": "Do nothing" },
"do-nothing9": { "description": "Do nothing" }
},
- "minimum_chrome_version": "33"
+ "minimum_chrome_version": "88"
}