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ファイルをダウンロード

Focus input element拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
}