AutoFocus Cursor

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

Vad är AutoFocus Cursor?

AutoFocus Cursor är en Chrome-tillägg utvecklad av https://diamondium.com, och dess huvudfunktion är "Automatically set the focus to a search text box when the page loads".

Tilläggsskärmbilder

screenshot

Ladda ner AutoFocus Cursor-förlängningens CRX-fil

Ladda ner AutoFocus Cursor-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

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

Namn AutoFocus Cursor AutoFocus Cursor
ID jbhglhmfhghlfdbbcpbihelgbnigggha
Officiell webbadress https://chromewebstore.google.com/detail/autofocus-cursor/jbhglhmfhghlfdbbcpbihelgbnigggha
Beskrivning Automatically set the focus to a search text box when the page loads
Filstorlek 62.14 KB
Antal Installationer 442
Aktuell Version 2.02
Senast Uppdaterad 2020-07-25
Publiceringsdatum 2020-06-20
Betyg 3.78/5 Totalt 9 Betyg
Utvecklare https://diamondium.com
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}