Mouse Trap - Keyboard Navigation

A hit-a-hint style keyboard navigation extension so that you can finally get rid of that rodent sitting on your desk.

Mouse Trap - Keyboard Navigation란 무엇입니까?

Mouse Trap - Keyboard Navigation은(는) Matt Deichler에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A hit-a-hint style keyboard navigation extension so that you can finally get rid of that rodent sitting on your desk."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Mouse Trap - Keyboard Navigation 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension provides keyboard accessibility to all clickable elements in a web page. This includes (but is not limited to):
- Links
- Buttons
- Input fields
- Select lists

Default keyboard shortcut: Ctrl+Shift+F
This can be changed from Chrome>Extensions>Shortcuts (chrome://extensions/shortcuts)

Enter the characters from the tag that you wish to click. 
- Enter will click the element
- Ctrl + Enter will attempt to open a link in a new browser tab

In the options you can change the placement of the alpha numeric "tags" and the input field.
You can also change the style (color, font, size, etc.) of both types of elements. 

Polling option can be used so that the "tags" are automatically refreshed on a regular interval instead of at the time of activating the extension. 
This is useful for websites that have a lot of elements per page. 
Set the interval. Default is 2 seconds. Must be specified in milliseconds
Optionally set white listed domains where you want polling to take effect. Leave blank for all sites. Regex notation can be used. 

Note: Extensions do not work on any "chrome://" pages                    

확장 프로그램 기본 정보

이름 Mouse Trap - Keyboard Navigation Mouse Trap - Keyboard Navigation
ID ckacjmhagpdaoaogehboabknaaadapgl
공식 URL https://chromewebstore.google.com/detail/mouse-trap-keyboard-navig/ckacjmhagpdaoaogehboabknaaadapgl
설명 A hit-a-hint style keyboard navigation extension so that you can finally get rid of that rodent sitting on your desk.
파일 크기 10.72 KB
설치 횟수 23
현재 버전 1.0
최근 업데이트 2019-03-20
출시 날짜 2019-03-19
평점 5.00/5 총 1 개의 평점
개발자 Matt Deichler
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mouse Trap - Keyboard Navigation",
    "version": "1.0",
    "description": "A hit-a-hint style keyboard navigation extension so that you can finally get rid of that rodent sitting on your desk.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "css": [
                "content.css"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "open_keynav": {
            "suggested_key": {
                "default": "Ctrl+Shift+F"
            },
            "description": "Toggle Keyboard Navigation"
        }
    }
}