Focus on first input (keyboard shortcut)

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

Qu'est-ce que Focus on first input (keyboard shortcut) ?

Focus on first input (keyboard shortcut) est une extension Chrome développée par https://mikesglitch.com, et sa fonction principale est "Adds a shortcut that focuses the cursor on the first text input.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Focus on first input (keyboard shortcut)

Téléchargez les fichiers d'extension Focus on first input (keyboard shortcut) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Focus on first input (keyboard shortcut) Focus on first input (keyboard shortcut)
ID ofngolgonfcpdanjehfjmcealkclchjg
URL Officiel https://chromewebstore.google.com/detail/focus-on-first-input-keyb/ofngolgonfcpdanjehfjmcealkclchjg
Description Adds a shortcut that focuses the cursor on the first text input.
Taille du Fichier 5.38 KB
Nombre d'Installations 388
Version Actuelle 0.1.8
Dernière Mise à Jour 2023-07-26
Date de Publication 2018-05-07
Évaluation 4.64/5 Total 11 Évaluations
Développeur https://mikesglitch.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/mikesglitch/Focus-First-Input
URL de la Page d'Aide https://github.com/mikesglitch/Focus-First-Input
Langues Prises en Charge 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'"
}