AutoFocus Cursor

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

Was ist AutoFocus Cursor?

AutoFocus Cursor ist eine Chrome-Erweiterung, die von https://diamondium.com entwickelt wurde, und ihr Hauptmerkmal ist "Automatically set the focus to a search text box when the page loads".

Erweiterungsscreenshots

screenshot

AutoFocus Cursor-Erweiterungs-CRX-Datei herunterladen

Laden Sie AutoFocus Cursor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name AutoFocus Cursor AutoFocus Cursor
ID jbhglhmfhghlfdbbcpbihelgbnigggha
Offizielle URL https://chromewebstore.google.com/detail/autofocus-cursor/jbhglhmfhghlfdbbcpbihelgbnigggha
Beschreibung Automatically set the focus to a search text box when the page loads
Dateigröße 62.14 KB
Installationsanzahl 442
Aktuelle Version 2.02
Letztes Update 2020-07-25
Veröffentlichungsdatum 2020-06-20
Bewertung 3.78/5 Insgesamt 9 Bewertungen
Entwickler https://diamondium.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}