From 5f893bf00d1c58f8472ecc6c2cd9318476645bc3 Mon Sep 17 00:00:00 2001 From: Benjamin Barenblat Date: Wed, 27 Nov 2019 11:32:00 -0500 Subject: A Chrome extension to disable keyboard shortcuts --- manifest.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 manifest.json (limited to 'manifest.json') 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 ", + "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" +} -- cgit v1.2.3