Custom Hotkeys

Allows you to add custom hotkeys to a website.

Custom Hotkeys क्या है?

Custom Hotkeys Scott Zackrison द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to add custom hotkeys to a website."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Custom Hotkeys एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Custom Hotkeys Custom Hotkeys
ID dogblfnfkmjolfcbpgfkhpaahocjhkbk
आधिकारिक URL https://chromewebstore.google.com/detail/custom-hotkeys/dogblfnfkmjolfcbpgfkhpaahocjhkbk
विवरण Allows you to add custom hotkeys to a website.
फ़ाइल का आकार 82.95 KB
स्थापना संख्या 1,477
वर्तमान संस्करण 1.1
अंतिम अपडेट 2017-07-19
प्रकाशन तिथि 2017-07-19
रेटिंग 4.29/5 कुल 7 रेटिंग्स
डेवलपर Scott Zackrison
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}