ctrl-access
Navigate to links with a trigger key (by default the ctrl-key).
什麼是ctrl-access?
ctrl-access是由Florian Loitsch開發的Chrome擴展程式,該擴展的主要功能是“Navigate to links with a trigger key (by default the ctrl-key).”。
擴展截圖
下載ctrl-access擴展crx文件
下載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 | 
| 官方網址 | 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"
}  |  |