Focus on first input (keyboard shortcut)

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

Apa itu Focus on first input (keyboard shortcut)?

Focus on first input (keyboard shortcut) adalah ekstensi Chrome yang dikembangkan oleh https://mikesglitch.com, dan fitur utamanya adalah "Adds a shortcut that focuses the cursor on the first text input.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Focus on first input (keyboard shortcut)

Unduh file ekstensi Focus on first input (keyboard shortcut) dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Focus on first input (keyboard shortcut) Focus on first input (keyboard shortcut)
ID ofngolgonfcpdanjehfjmcealkclchjg
URL Resmi https://chromewebstore.google.com/detail/focus-on-first-input-keyb/ofngolgonfcpdanjehfjmcealkclchjg
Deskripsi Adds a shortcut that focuses the cursor on the first text input.
Ukuran File 5.38 KB
Jumlah Instalasi 388
Versi Saat Ini 0.1.8
Terakhir Diperbarui 2023-07-26
Tanggal Publikasi 2018-05-07
Penilaian 4.64/5 Total 11 Penilaian
Pengembang https://mikesglitch.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/mikesglitch/Focus-First-Input
URL Halaman Bantuan https://github.com/mikesglitch/Focus-First-Input
Bahasa yang Didukung 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'"
}