Focus input element

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

Hvad er Focus input element?

Focus input element er en Chrome-udvidelse udviklet af sa1hon, og dens hovedfunktion er "Focuses on the next or previous HTML input element when the shortcut key is pressed.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Focus input element-udvidelses-CRX-fil

Download Focus input element-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Focus input element Focus input element
ID pehdagiekdjhnojgbbcnckoojejiojgn
Officiel URL https://chromewebstore.google.com/detail/focus-input-element/pehdagiekdjhnojgbbcnckoojejiojgn
Beskrivelse Focuses on the next or previous HTML input element when the shortcut key is pressed.
Filstørrelse 40.31 KB
Antal Installationer 356
Nuværende Version 1.2.1
Senest Opdateret 2023-03-30
Udgivelsesdato 2020-01-01
Bedømmelse 5.00/5 Samlet 9 Bedømmelser
Udvikler sa1hon
E-mail zivokw+chromeWebStore@gmail.com
Betalingsmetode free
Udvidelseswebsted https://github.com/saihon/focus-input-element
Understøttede Sprog 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
}