Focus on first input (keyboard shortcut)

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

Wat is Focus on first input (keyboard shortcut)?

Focus on first input (keyboard shortcut) is een Chrome-extensie ontwikkeld door https://mikesglitch.com, en de belangrijkste functie is "Adds a shortcut that focuses the cursor on the first text input.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Focus on first input (keyboard shortcut)

Download Focus on first input (keyboard shortcut)-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Focus on first input (keyboard shortcut) Focus on first input (keyboard shortcut)
ID ofngolgonfcpdanjehfjmcealkclchjg
Officiële URL https://chromewebstore.google.com/detail/focus-on-first-input-keyb/ofngolgonfcpdanjehfjmcealkclchjg
Beschrijving Adds a shortcut that focuses the cursor on the first text input.
Bestandsgrootte 5.38 KB
Aantal Installaties 388
Huidige Versie 0.1.8
Laatst Bijgewerkt 2023-07-26
Publicatiedatum 2018-05-07
Beoordeling 4.64/5 Totaal 11 Beoordelingen
Ontwikkelaar https://mikesglitch.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/mikesglitch/Focus-First-Input
Help Pagina-URL https://github.com/mikesglitch/Focus-First-Input
Ondersteunde Talen 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'"
}