Custom Hotkeys

Allows you to add custom hotkeys to a website.

Custom Hotkeysとは何ですか?

Custom HotkeysはScott Zackrisonによって開発されたChromeの拡張機能で、その主な機能は「Allows you to add custom hotkeys to a website.」です。

拡張機能のスクリーンショット

screenshot

Custom Hotkeys拡張機能のCRXファイルをダウンロード

Custom Hotkeys拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    ]
}