knavi

Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.

knaviคืออะไร?

knavi เป็นส่วนขยายของ Chrome ที่พัฒนาโดย k_ui และคุณลักษณะหลักของมันคือ "Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text."

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

screenshot
screenshot

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

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

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

                        This is for clicking links and buttons with keyboard only. Pressing space key and hint key simulates clicking links and buttons.

By releasing space key with modifier keys such as `Ctrl` or `Alt`, you can open links in new tab or new window.

The default magic key is space key, but you can change it in options.                    

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

ชื่อ knavi knavi
ID pfcgnkljgjobpkbgcifmpnhglafhkifg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/knavi/pfcgnkljgjobpkbgcifmpnhglafhkifg
คำอธิบาย Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.
ขนาดไฟล์ 255 KB
จำนวนการติดตั้ง 282
เวอร์ชันปัจจุบัน 3.2.0
อัปเดตครั้งล่าสุด 2023-12-16
วันที่เผยแพร่ 2020-02-18
คะแนน 4.54/5 รวมทั้งหมด 24 คะแนน
ผู้พัฒนา k_ui
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kui/knavi
URL หน้าช่วยเหลือ https://github.com/kui/knavi/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "knavi",
    "version": "3.2.0",
    "description": "Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.",
    "author": "Keiichiro Ui",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-all.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content-root.js"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "*.js.map"
            ]
        }
    ]
}