AutoFocus Cursor

Automatically set the focus to a search text box when the page loads

Hvad er AutoFocus Cursor?

AutoFocus Cursor er en Chrome-udvidelse udviklet af https://diamondium.com, og dens hovedfunktion er "Automatically set the focus to a search text box when the page loads".

Udvidelsesskærmbilleder

screenshot

Download AutoFocus Cursor-udvidelses-CRX-fil

Download AutoFocus Cursor-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

                        You no longer have to manually click a text box before searching!

Useful on websites where searching is the first thing you want to do (ex. Amazon).

Your cursor will automatically be placed in the first visible text box once the website loads.                    

Grundlæggende oplysninger om udvidelsen

Navn AutoFocus Cursor AutoFocus Cursor
ID jbhglhmfhghlfdbbcpbihelgbnigggha
Officiel URL https://chromewebstore.google.com/detail/autofocus-cursor/jbhglhmfhghlfdbbcpbihelgbnigggha
Beskrivelse Automatically set the focus to a search text box when the page loads
Filstørrelse 62.14 KB
Antal Installationer 442
Nuværende Version 2.02
Senest Opdateret 2020-07-25
Udgivelsesdato 2020-06-20
Bedømmelse 3.78/5 Samlet 9 Bedømmelser
Udvikler https://diamondium.com
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoFocus Cursor",
    "description": "Automatically set the focus to a search text box when the page loads",
    "permissions": [
        "storage",
        "tabs"
    ],
    "version": "2.02",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/auto-focus-min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "autofocuscursor-settings.html"
    }
}