ctrl-access
Navigate to links with a trigger key (by default the ctrl-key).
ctrl-accessคืออะไร?
ctrl-access เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Florian Loitsch และคุณลักษณะหลักของมันคือ "Navigate to links with a trigger key (by default the ctrl-key)."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ctrl-access
ดาวน์โหลดไฟล์ส่วนขยาย ctrl-access ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
                        This chrome extension allows to navigate to links with a trigger key (by default the ctrl-key). In many cases this removes the need for a mouse.
This extension is a copy of Konqueror's access-key functionality.                     ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ |   |  
| ID | glmoehiilkjpgcimmfodllkkhpeikomb | 
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ctrl-access/glmoehiilkjpgcimmfodllkkhpeikomb | 
| คำอธิบาย | Navigate to links with a trigger key (by default the ctrl-key). | 
| ขนาดไฟล์ | 725 KB | 
| จำนวนการติดตั้ง | 68 | 
| เวอร์ชันปัจจุบัน | 0.7.0 | 
| อัปเดตครั้งล่าสุด | 2020-08-16 | 
| วันที่เผยแพร่ | 2019-12-16 | 
| คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน | 
| ผู้พัฒนา | Florian Loitsch | 
| อีเมล | [email protected] | 
| ประเภทการชำระเงิน | free | 
| เว็บไซต์ส่วนขยาย | https://github.com/floitsch/ctrl-access | 
| ภาษาที่รองรับ | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ctrl-access",
    "version": "0.7.0",
    "description": "Navigate to links with a trigger key (by default the ctrl-key).",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-1.7.2.min.js",
                "ctrl-access.js"
            ],
            "css": [
                "ctrl-access.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "options_page": "options.html"
}  |  |