Custom Hotkeys

Allows you to add custom hotkeys to a website.

What is Custom Hotkeys?

Custom Hotkeys is a Chrome extension developed by Scott Zackrison, and its main feature is "Allows you to add custom hotkeys to a website.".

Extension Screenshots

screenshot

Download Custom Hotkeys Extension CRX File

Download Custom Hotkeys 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

                        Allows you to set up hotkeys on any website. Use your keyboard to simulate a click on an element on the screen. It uses jQuery selectors.

I use it on pocketcasts.com to control the on screen controls. I made them the same as Youtubes keyboard controls.

Updated: 7/19/17
--> fixed a bug when typing in an input or textarea firing the event.                    

Extension Basic Information

Name Custom Hotkeys Custom Hotkeys
ID dogblfnfkmjolfcbpgfkhpaahocjhkbk
Official URL https://chromewebstore.google.com/detail/custom-hotkeys/dogblfnfkmjolfcbpgfkhpaahocjhkbk
Description Allows you to add custom hotkeys to a website.
File Size 82.95 KB
Installation Count 1,477
Current Version 1.1
Last Updated 2017-07-19
Publish Date 2017-07-19
Rating 4.29/5 Total 7 Ratings
Developer Scott Zackrison
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Custom Hotkeys",
    "description": "Allows you to add custom hotkeys to a website.",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "options_page": "options.html",
    "icons": {
        "48": "icon_48.png",
        "24": "icon_24.png"
    },
    "permissions": [
        "storage"
    ]
}