Focus input element

Focuses on the next or previous HTML input element when the shortcut key is pressed.

Vad är Focus input element?

Focus input element är en Chrome-tillägg utvecklad av sa1hon, och dess huvudfunktion är "Focuses on the next or previous HTML input element when the shortcut key is pressed.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Focus input element-förlängningens CRX-fil

Ladda ner Focus input element-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

                        Overview:
Press a shortcut key to focus on the input field on the web page.

The default shortcut key:

- Next input field: F2
- Previous input field: Shift+F2
- Unfocus: F4

Feature:

- You can press it repeatedly to move to the next or previous field.
- You can focus the closest input field in the active area.
- You can check the location of the field with marker.
- These settings can be changed on the Options page.                    

Grundläggande Information om Tillägg

Namn Focus input element Focus input element
ID pehdagiekdjhnojgbbcnckoojejiojgn
Officiell webbadress https://chromewebstore.google.com/detail/focus-input-element/pehdagiekdjhnojgbbcnckoojejiojgn
Beskrivning Focuses on the next or previous HTML input element when the shortcut key is pressed.
Filstorlek 40.31 KB
Antal Installationer 356
Aktuell Version 1.2.1
Senast Uppdaterad 2023-03-30
Publiceringsdatum 2020-01-01
Betyg 5.00/5 Totalt 9 Betyg
Utvecklare sa1hon
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/saihon/focus-input-element
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Focus input element",
    "version": "1.2.1",
    "description": "Focuses on the next or previous HTML input element when the shortcut key is pressed.",
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "19": "icons\/icon-19.png",
        "16": "icons\/icon-16.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ]
        }
    ],
    "options_ui": {
        "chrome_style": true,
        "open_in_tab": true,
        "page": "options.html"
    },
    "manifest_version": 2
}