KeyboardShortcuts

Add Keyboard Shortcuts to Web Applications

KeyboardShortcutsคืออะไร?

KeyboardShortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย farleigh และคุณลักษณะหลักของมันคือ "Add Keyboard Shortcuts to Web Applications"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย KeyboardShortcuts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Add custom keyboard shortcuts (hotkeys) to specific web applications using a small flexible language. Currently supports commands including copying content into the clipboard, clicking, touching, opening new pages, focusing on elements, hiding elements on the page and setting content.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ KeyboardShortcuts KeyboardShortcuts
ID oiigclempgcopbccpbibeembdmbenpce
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/keyboardshortcuts/oiigclempgcopbccpbibeembdmbenpce
คำอธิบาย Add Keyboard Shortcuts to Web Applications
ขนาดไฟล์ 498 KB
จำนวนการติดตั้ง 76
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2016-04-24
วันที่เผยแพร่ 2016-04-24
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา farleigh
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/farleigh/keyboardshortcuts/wiki
URL หน้าช่วยเหลือ https://github.com/farleigh/keyboardshortcuts/wiki
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "KeyboardShortcuts",
    "version": "1.0.0",
    "description": "Add Keyboard Shortcuts to Web Applications",
    "homepage_url": "https:\/\/github.com\/farleigh\/keyboardshortcuts\/wiki",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/3p\/almond-min.js",
                "js\/3p\/jquery.js",
                "js\/3p\/mousetrap.js",
                "js\/keyboard-shortcuts-bundle.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "clipboardWrite",
        "downloads"
    ],
    "browser_action": {
        "default_icon": "images\/favicon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "32": "images\/favicon.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}