Custom Hotkeys

Allows you to add custom hotkeys to a website.

Hvad er Custom Hotkeys?

Custom Hotkeys er en Chrome-udvidelse udviklet af Scott Zackrison, og dens hovedfunktion er "Allows you to add custom hotkeys to a website.".

Udvidelsesskærmbilleder

screenshot

Download Custom Hotkeys-udvidelses-CRX-fil

Download Custom Hotkeys-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Custom Hotkeys Custom Hotkeys
ID dogblfnfkmjolfcbpgfkhpaahocjhkbk
Officiel URL https://chromewebstore.google.com/detail/custom-hotkeys/dogblfnfkmjolfcbpgfkhpaahocjhkbk
Beskrivelse Allows you to add custom hotkeys to a website.
Filstørrelse 82.95 KB
Antal Installationer 1,477
Nuværende Version 1.1
Senest Opdateret 2017-07-19
Udgivelsesdato 2017-07-19
Bedømmelse 4.29/5 Samlet 7 Bedømmelser
Udvikler Scott Zackrison
Betalingsmetode free
Understøttede Sprog 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"
    ]
}