Focus on first input (keyboard shortcut)

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

Hvad er Focus on first input (keyboard shortcut)?

Focus on first input (keyboard shortcut) er en Chrome-udvidelse udviklet af https://mikesglitch.com, og dens hovedfunktion er "Adds a shortcut that focuses the cursor on the first text input.".

Udvidelsesskærmbilleder

screenshot

Download Focus on first input (keyboard shortcut)-udvidelses-CRX-fil

Download Focus on first input (keyboard shortcut)-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Focus on first input (keyboard shortcut) Focus on first input (keyboard shortcut)
ID ofngolgonfcpdanjehfjmcealkclchjg
Officiel URL https://chromewebstore.google.com/detail/focus-on-first-input-keyb/ofngolgonfcpdanjehfjmcealkclchjg
Beskrivelse Adds a shortcut that focuses the cursor on the first text input.
Filstørrelse 5.38 KB
Antal Installationer 388
Nuværende Version 0.1.8
Senest Opdateret 2023-07-26
Udgivelsesdato 2018-05-07
Bedømmelse 4.64/5 Samlet 11 Bedømmelser
Udvikler https://mikesglitch.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/mikesglitch/Focus-First-Input
Hjælpeside-URL https://github.com/mikesglitch/Focus-First-Input
Understøttede Sprog 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'"
}