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
电子邮箱 [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
}