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) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://mikesglitch.com และคุณลักษณะหลักของมันคือ "Adds a shortcut that focuses the cursor on the first text input."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Focus on first input (keyboard shortcut)

ดาวน์โหลดไฟล์ส่วนขยาย 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'"
}