aboutsummaryrefslogtreecommitdiffhomepage
path: root/manifest.json
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@google.com>2019-11-27 11:32:00 -0500
committerGravatar Benjamin Barenblat <bbaren@google.com>2019-11-27 11:32:00 -0500
commit5f893bf00d1c58f8472ecc6c2cd9318476645bc3 (patch)
treede3157ec906c9997241c590c5d36f78f51be8d1b /manifest.json
A Chrome extension to disable keyboard shortcutsv1.0.0
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..0f58369
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,28 @@
+{
+ "manifest_version": 2,
+ "name": "Disable keyboard shortcuts",
+ "version": "1.0.0",
+ "description": "Disable arbitrary keyboard shortcuts",
+ "icons": {
+ "48": "icon48.png",
+ "128": "icon128.png"
+ },
+ "author": "Benjamin Barenblat <bbaren@google.com>",
+ "background": {
+ "persistent": false,
+ "scripts" : ["background.js"]
+ },
+ "commands": {
+ "do-nothing0": { "description": "Do nothing" },
+ "do-nothing1": { "description": "Do nothing" },
+ "do-nothing2": { "description": "Do nothing" },
+ "do-nothing3": { "description": "Do nothing" },
+ "do-nothing4": { "description": "Do nothing" },
+ "do-nothing5": { "description": "Do nothing" },
+ "do-nothing6": { "description": "Do nothing" },
+ "do-nothing7": { "description": "Do nothing" },
+ "do-nothing8": { "description": "Do nothing" },
+ "do-nothing9": { "description": "Do nothing" }
+ },
+ "minimum_chrome_version": "33"
+}