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
官方網址 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
}