Focus on first input (keyboard shortcut)

Adds a shortcut that focuses the cursor on the first text input.

Focus on first input (keyboard shortcut)란 무엇입니까?

Focus on first input (keyboard shortcut)은(는) https://mikesglitch.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a shortcut that focuses the cursor on the first text input."입니다.

확장 프로그램 스크린샷

screenshot

Focus on first input (keyboard shortcut) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The default shortcut is 'Alt+S' - it is fully rebindable via the Chrome Extension shortcut menu (chrome://extensions/shortcuts).

To view the code you can visit my GitHub repository: https://github.com/mikesglitch/Focus-First-Input                    

확장 프로그램 기본 정보

이름 Focus on first input (keyboard shortcut) Focus on first input (keyboard shortcut)
ID ofngolgonfcpdanjehfjmcealkclchjg
공식 URL https://chromewebstore.google.com/detail/focus-on-first-input-keyb/ofngolgonfcpdanjehfjmcealkclchjg
설명 Adds a shortcut that focuses the cursor on the first text input.
파일 크기 5.38 KB
설치 횟수 388
현재 버전 0.1.8
최근 업데이트 2023-07-26
출시 날짜 2018-05-07
평점 4.64/5 총 11 개의 평점
개발자 https://mikesglitch.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mikesglitch/Focus-First-Input
도움말 페이지 URL https://github.com/mikesglitch/Focus-First-Input
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Focus on first input (keyboard shortcut)",
    "version": "0.1.8",
    "manifest_version": 2,
    "description": "Adds a shortcut that focuses the cursor on the first text input.",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "inj.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "focus-first-input": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "Focus on the first input on the screen"
        }
    },
    "content_security_policy": "script-src 'self'; object-src 'self'"
}