Keyboard Navigation

Keyboard based link navigation like Conkeror

什么是Keyboard Navigation?

Keyboard Navigation是由https://flurp.de开发的Chrome扩展程序,该扩展的主要功能是“Keyboard based link navigation like Conkeror”。

扩展截图

screenshot

下载Keyboard Navigation扩展crx文件

下载Keyboard Navigation扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Follow links on page just with a few key strokes. No mouse interaction needed.

Especially useful for people who are typing a lot and don't want to switch one hand off the keyboard to the mouse. 

Inspired by the same functions in Conkeror, a keyboard based browser.                    

扩展基本信息

名称 Keyboard Navigation Keyboard Navigation
ID pbeglgibmimhhoddioagekdgljpdekdg
官方URL https://chromewebstore.google.com/detail/keyboard-navigation/pbeglgibmimhhoddioagekdgljpdekdg
简介 Keyboard based link navigation like Conkeror
文件大小 38.63 KB
安装次数 38
当前版本 1.0
更新时间 2016-09-04
上架时间 2016-09-04
评分 4.00/5 共1次评分
开发者 https://flurp.de
付费类型 free
扩展官网 https://github.com/dermatthias/keyboardnav
帮助页面URL https://github.com/dermatthias/keyboardnav/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Keyboard Navigation",
    "short_name": "keyboardnav",
    "description": "Keyboard based link navigation like Conkeror",
    "homepage_url": "https:\/\/github.com\/dermatthias\/keyboardnav",
    "version": "1.0",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "contentscript.js"
            ]
        }
    ],
    "commands": {
        "highlight-links": {
            "suggested_key": {
                "default": "Ctrl+Space"
            },
            "description": "Highlight links on a webpage"
        }
    }
}