Custom Hotkeys

Allows you to add custom hotkeys to a website.

Custom Hotkeysคืออะไร?

Custom Hotkeys เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Scott Zackrison และคุณลักษณะหลักของมันคือ "Allows you to add custom hotkeys to a website."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Custom Hotkeys

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}