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文件

下载Focus on first input (keyboard shortcut)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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'"
}