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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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