KeyboardMode

This extension allows you to open links with your Keyboard.

KeyboardMode란 무엇입니까?

KeyboardMode은(는) https://hanneshofer.github.io/KeyboardMode에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to open links with your Keyboard."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

KeyboardMode 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to control chrome with your keyboard.
With the alreay knows hotkeys it is already possible to control most parts of chrome (ex. Enter new URL, go back, go forward)
after pressing a certain, adjustable, hotkey this extension shows links hints (see screenshot)
when the shown characters in the link hints are pressed the relevant link will be opend.
with "meta" keys it is possible to open certain links in new tab, new window or in new incognito window.                    

확장 프로그램 기본 정보

이름 KeyboardMode KeyboardMode
ID gceomdpidnmgddihieakclncpopaiplc
공식 URL https://chromewebstore.google.com/detail/keyboardmode/gceomdpidnmgddihieakclncpopaiplc
설명 This extension allows you to open links with your Keyboard.
파일 크기 44.36 KB
설치 횟수 11
현재 버전 0.1
최근 업데이트 2014-08-19
출시 날짜 2014-08-19
평점 5.00/5 총 2 개의 평점
개발자 https://hanneshofer.github.io/KeyboardMode
결제 유형 free
지원되는 언어 de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "default_locale": "en",
    "description": "This extension allows you to open links with your Keyboard.",
    "icons": {
        "128": "icon.png"
    },
    "version": "0.1",
    "options_page": "options.html",
    "permissions": [
        "",
        "tabs",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "lib\/background.js"
        ]
    },
    "commands": {
        "activate_link_hints": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Command+M"
            },
            "description": "Link Hints anzeigen"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/keyboard_utils.js",
                "lib\/dom_utils.js",
                "lib\/option_utils.js",
                "link_hints.js",
                "command.js"
            ],
            "css": [
                "keyboardmode.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}