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