Custom Hotkeys

Allows you to add custom hotkeys to a website.

Custom Hotkeys là gì?

Custom Hotkeys là một tiện ích mở rộng Chrome được phát triển bởi Scott Zackrison, và tính năng chính của nó là "Allows you to add custom hotkeys to a website.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Custom Hotkeys

Tải xuống các tệp mở rộng Custom Hotkeys dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Custom Hotkeys Custom Hotkeys
ID dogblfnfkmjolfcbpgfkhpaahocjhkbk
URL Chính Thức https://chromewebstore.google.com/detail/custom-hotkeys/dogblfnfkmjolfcbpgfkhpaahocjhkbk
Mô tả Allows you to add custom hotkeys to a website.
Kích Thước Tệp 82.95 KB
Số Lần Cài Đặt 1,477
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2017-07-19
Ngày Phát Hành 2017-07-19
Đánh Giá 4.29/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Scott Zackrison
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}