Focus on first input (keyboard shortcut)

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

Was ist Focus on first input (keyboard shortcut)?

Focus on first input (keyboard shortcut) ist eine Chrome-Erweiterung, die von https://mikesglitch.com entwickelt wurde, und ihr Hauptmerkmal ist "Adds a shortcut that focuses the cursor on the first text input.".

Erweiterungsscreenshots

screenshot

Focus on first input (keyboard shortcut)-Erweiterungs-CRX-Datei herunterladen

Laden Sie Focus on first input (keyboard shortcut)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Focus on first input (keyboard shortcut) Focus on first input (keyboard shortcut)
ID ofngolgonfcpdanjehfjmcealkclchjg
Offizielle URL https://chromewebstore.google.com/detail/focus-on-first-input-keyb/ofngolgonfcpdanjehfjmcealkclchjg
Beschreibung Adds a shortcut that focuses the cursor on the first text input.
Dateigröße 5.38 KB
Installationsanzahl 388
Aktuelle Version 0.1.8
Letztes Update 2023-07-26
Veröffentlichungsdatum 2018-05-07
Bewertung 4.64/5 Insgesamt 11 Bewertungen
Entwickler https://mikesglitch.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/mikesglitch/Focus-First-Input
Hilfeseite URL https://github.com/mikesglitch/Focus-First-Input
Unterstützte Sprachen 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'"
}