Custom Hotkeys

Allows you to add custom hotkeys to a website.

Apa itu Custom Hotkeys?

Custom Hotkeys adalah ekstensi Chrome yang dikembangkan oleh Scott Zackrison, dan fitur utamanya adalah "Allows you to add custom hotkeys to a website.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Custom Hotkeys

Unduh file ekstensi Custom Hotkeys dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Custom Hotkeys Custom Hotkeys
ID dogblfnfkmjolfcbpgfkhpaahocjhkbk
URL Resmi https://chromewebstore.google.com/detail/custom-hotkeys/dogblfnfkmjolfcbpgfkhpaahocjhkbk
Deskripsi Allows you to add custom hotkeys to a website.
Ukuran File 82.95 KB
Jumlah Instalasi 1,477
Versi Saat Ini 1.1
Terakhir Diperbarui 2017-07-19
Tanggal Publikasi 2017-07-19
Penilaian 4.29/5 Total 7 Penilaian
Pengembang Scott Zackrison
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}