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 | 
| 官方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"
}  |  |