Focus input element

Focuses on the next or previous HTML input element when the shortcut key is pressed.

Focus input element란 무엇입니까?

Focus input element은(는) sa1hon에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Focuses on the next or previous HTML input element when the shortcut key is pressed."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Focus input element 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Overview:
Press a shortcut key to focus on the input field on the web page.

The default shortcut key:

- Next input field: F2
- Previous input field: Shift+F2
- Unfocus: F4

Feature:

- You can press it repeatedly to move to the next or previous field.
- You can focus the closest input field in the active area.
- You can check the location of the field with marker.
- These settings can be changed on the Options page.                    

확장 프로그램 기본 정보

이름 Focus input element Focus input element
ID pehdagiekdjhnojgbbcnckoojejiojgn
공식 URL https://chromewebstore.google.com/detail/focus-input-element/pehdagiekdjhnojgbbcnckoojejiojgn
설명 Focuses on the next or previous HTML input element when the shortcut key is pressed.
파일 크기 40.31 KB
설치 횟수 356
현재 버전 1.2.1
최근 업데이트 2023-03-30
출시 날짜 2020-01-01
평점 5.00/5 총 9 개의 평점
개발자 sa1hon
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/saihon/focus-input-element
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Focus input element",
    "version": "1.2.1",
    "description": "Focuses on the next or previous HTML input element when the shortcut key is pressed.",
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "19": "icons\/icon-19.png",
        "16": "icons\/icon-16.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ]
        }
    ],
    "options_ui": {
        "chrome_style": true,
        "open_in_tab": true,
        "page": "options.html"
    },
    "manifest_version": 2
}