Focus on first input (keyboard shortcut)

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

Vad är Focus on first input (keyboard shortcut)?

Focus on first input (keyboard shortcut) är en Chrome-tillägg utvecklad av https://mikesglitch.com, och dess huvudfunktion är "Adds a shortcut that focuses the cursor on the first text input.".

Tilläggsskärmbilder

screenshot

Ladda ner Focus on first input (keyboard shortcut)-förlängningens CRX-fil

Ladda ner Focus on first input (keyboard shortcut)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Focus on first input (keyboard shortcut) Focus on first input (keyboard shortcut)
ID ofngolgonfcpdanjehfjmcealkclchjg
Officiell webbadress https://chromewebstore.google.com/detail/focus-on-first-input-keyb/ofngolgonfcpdanjehfjmcealkclchjg
Beskrivning Adds a shortcut that focuses the cursor on the first text input.
Filstorlek 5.38 KB
Antal Installationer 388
Aktuell Version 0.1.8
Senast Uppdaterad 2023-07-26
Publiceringsdatum 2018-05-07
Betyg 4.64/5 Totalt 11 Betyg
Utvecklare https://mikesglitch.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/mikesglitch/Focus-First-Input
Hjälpsida URL https://github.com/mikesglitch/Focus-First-Input
Stödda Språk 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'"
}