Focus on first input (keyboard shortcut)

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

Focus on first input (keyboard shortcut) là gì?

Focus on first input (keyboard shortcut) là một tiện ích mở rộng Chrome được phát triển bởi https://mikesglitch.com, và tính năng chính của nó là "Adds a shortcut that focuses the cursor on the first text input.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Focus on first input (keyboard shortcut)

Tải xuống các tệp mở rộng Focus on first input (keyboard shortcut) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Focus on first input (keyboard shortcut) Focus on first input (keyboard shortcut)
ID ofngolgonfcpdanjehfjmcealkclchjg
URL Chính Thức https://chromewebstore.google.com/detail/focus-on-first-input-keyb/ofngolgonfcpdanjehfjmcealkclchjg
Mô tả Adds a shortcut that focuses the cursor on the first text input.
Kích Thước Tệp 5.38 KB
Số Lần Cài Đặt 388
Phiên Bản Hiện Tại 0.1.8
Cập Nhật Lần Cuối 2023-07-26
Ngày Phát Hành 2018-05-07
Đánh Giá 4.64/5 Tổng số 11 Đánh Giá
Nhà Phát Triển https://mikesglitch.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mikesglitch/Focus-First-Input
URL Trang Trợ Giúp https://github.com/mikesglitch/Focus-First-Input
Ngôn Ngữ Được Hỗ Trợ 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'"
}