Custom Hotkeys

Allows you to add custom hotkeys to a website.

Was ist Custom Hotkeys?

Custom Hotkeys ist eine Chrome-Erweiterung, die von Scott Zackrison entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to add custom hotkeys to a website.".

Erweiterungsscreenshots

screenshot

Custom Hotkeys-Erweiterungs-CRX-Datei herunterladen

Laden Sie Custom Hotkeys-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Custom Hotkeys Custom Hotkeys
ID dogblfnfkmjolfcbpgfkhpaahocjhkbk
Offizielle URL https://chromewebstore.google.com/detail/custom-hotkeys/dogblfnfkmjolfcbpgfkhpaahocjhkbk
Beschreibung Allows you to add custom hotkeys to a website.
Dateigröße 82.95 KB
Installationsanzahl 1,477
Aktuelle Version 1.1
Letztes Update 2017-07-19
Veröffentlichungsdatum 2017-07-19
Bewertung 4.29/5 Insgesamt 7 Bewertungen
Entwickler Scott Zackrison
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}