AutoFocus Cursor

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

Co to jest AutoFocus Cursor?

AutoFocus Cursor to rozszerzenie Chrome opracowane przez https://diamondium.com, a jego główną funkcją jest „Automatically set the focus to a search text box when the page loads”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia AutoFocus Cursor

Pobierz pliki rozszerzeń AutoFocus Cursor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa AutoFocus Cursor AutoFocus Cursor
ID jbhglhmfhghlfdbbcpbihelgbnigggha
Oficjalny URL https://chromewebstore.google.com/detail/autofocus-cursor/jbhglhmfhghlfdbbcpbihelgbnigggha
Opis Automatically set the focus to a search text box when the page loads
Rozmiar pliku 62.14 KB
Liczba instalacji 442
Aktualna Wersja 2.02
Ostatnia Aktualizacja 2020-07-25
Data Publikacji 2020-06-20
Ocena 3.78/5 Łącznie 9 Oceny
Deweloper https://diamondium.com
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}