KeyboardShortcuts
Add Keyboard Shortcuts to Web Applications
What is KeyboardShortcuts?
KeyboardShortcuts is a Chrome extension developed by farleigh, and its main feature is "Add Keyboard Shortcuts to Web Applications".
Extension Screenshots
Download KeyboardShortcuts Extension CRX File
Download KeyboardShortcuts extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Add custom keyboard shortcuts (hotkeys) to specific web applications using a small flexible language. Currently supports commands including copying content into the clipboard, clicking, touching, opening new pages, focusing on elements, hiding elements on the page and setting content.
Extension Basic Information
Name | |
ID | oiigclempgcopbccpbibeembdmbenpce |
Official URL | https://chrome.google.com/webstore/detail/keyboardshortcuts/oiigclempgcopbccpbibeembdmbenpce |
Description | Add Keyboard Shortcuts to Web Applications |
File Size | 498 KB |
Installation Count | 76 |
Current Version | 1.0.0 |
Last Updated | 2016-04-24 |
Publish Date | 2016-04-24 |
Rating | 5.00/5 Total 1 Ratings |
Developer | farleigh |
Payment Type | free |
Extension Website | https://github.com/farleigh/keyboardshortcuts/wiki |
Help Page URL | https://github.com/farleigh/keyboardshortcuts/wiki |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "KeyboardShortcuts", "version": "1.0.0", "description": "Add Keyboard Shortcuts to Web Applications", "homepage_url": "https:\/\/github.com\/farleigh\/keyboardshortcuts\/wiki", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/3p\/almond-min.js", "js\/3p\/jquery.js", "js\/3p\/mousetrap.js", "js\/keyboard-shortcuts-bundle.js" ] } ], "content_security_policy": "script-src 'self'; object-src 'self'", "permissions": [ "tabs", "activeTab", "storage", "clipboardWrite", "downloads" ], "browser_action": { "default_icon": "images\/favicon.png", "default_popup": "popup.html" }, "icons": { "32": "images\/favicon.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |