Link Hints

Click with your keyboard.

Link Hintsคืออะไร?

Link Hints เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Simon Lydell และคุณลักษณะหลักของมันคือ "Click with your keyboard."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Have a bad touchpad? Trouble using a mouse? Love keyboard shortcuts?

Link Hints is a browser extension that complements the built-in keyboard shortcuts with ones for clicking.

Press Alt+J (Ctrl+J on macOS). This makes little yellow boxes with letters, called hints, appear next to links (and other clickable things). Type the letters to click the link. Alternatively, hold Shift and type a bit of the link text.

The keyboard shortcuts and hints are fully customizable.

Alt+J: Click links, buttons, etc.
Alt+K: Open link in new tab.
Alt+L: Open link in new tab and switch to it.

Alt+Shift+J: Click many things.
Alt+Shift+K: Open many links.
Alt+Shift+L: Select element.                    

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

ชื่อ Link Hints Link Hints
ID kjjgifdfplpegljdfnpmbjmkngdilmkd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/link-hints/kjjgifdfplpegljdfnpmbjmkngdilmkd
คำอธิบาย Click with your keyboard.
ขนาดไฟล์ 167 KB
จำนวนการติดตั้ง 1,327
เวอร์ชันปัจจุบัน 1.3.1
อัปเดตครั้งล่าสุด 2022-08-08
วันที่เผยแพร่ 2020-05-23
คะแนน 4.96/5 รวมทั้งหมด 23 คะแนน
ผู้พัฒนา Simon Lydell
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://lydell.github.io/LinkHints/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.3.1",
    "name": "Link Hints",
    "author": "Simon Lydell",
    "description": "Click with your keyboard.",
    "homepage_url": "https:\/\/lydell.github.io\/LinkHints",
    "icons": {
        "16": "icons\/png-$normal\/16.png",
        "32": "icons\/png-$normal\/32.png",
        "48": "icons\/png-$normal\/48.png",
        "64": "icons\/png-$normal\/64.png",
        "96": "icons\/png-$normal\/96.png",
        "128": "icons\/png-$normal\/128.png",
        "256": "icons\/png-$normal\/256.png"
    },
    "permissions": [
        "",
        "storage"
    ],
    "browser_action": {
        "browser_style": true,
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/png-$normal\/16.png",
            "32": "icons\/png-$normal\/32.png",
            "48": "icons\/png-$normal\/48.png",
            "64": "icons\/png-$normal\/64.png",
            "96": "icons\/png-$normal\/96.png",
            "128": "icons\/png-$normal\/128.png",
            "256": "icons\/png-$normal\/256.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "match_about_blank": true,
            "run_at": "document_start",
            "js": [
                "browser-polyfill.js",
                "worker.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "browser-polyfill.js",
                "renderer.js"
            ]
        }
    ]
}