Cursor Highlighter

Add a visual indicator to your mouse cursor for better visibility

Co to jest Cursor Highlighter?

Cursor Highlighter to rozszerzenie Chrome opracowane przez Alexander Lyon, a jego główną funkcją jest „Add a visual indicator to your mouse cursor for better visibility”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Cursor Highlighter

Pobierz pliki rozszerzeń Cursor Highlighter 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

                        Add a customizable visual indicator to your mouse cursor on any website. Whether to assist those who are visually impaired or for presentation/education purposes, this will make your cursor stand out!

Select one of the default colors, or use the built-in color picker to choose your own unique color to fit your personality!                    

Podstawowe informacje o rozszerzeniu

Nazwa Cursor Highlighter Cursor Highlighter
ID echjgnggfpiohepohkpfknhjbnccdjlo
Oficjalny URL https://chromewebstore.google.com/detail/cursor-highlighter/echjgnggfpiohepohkpfknhjbnccdjlo
Opis Add a visual indicator to your mouse cursor for better visibility
Rozmiar pliku 60.86 KB
Liczba instalacji 11,158
Aktualna Wersja 2.1.0
Ostatnia Aktualizacja 2022-08-08
Data Publikacji 2020-09-20
Ocena 3.43/5 Łącznie 28 Oceny
Deweloper Alexander Lyon
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",
    "name": "Cursor Highlighter",
    "description": "Add a visual indicator to your mouse cursor for better visibility",
    "version": "2.1.0",
    "manifest_version": 2,
    "options_page": "options\/options.html",
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_popup": "options\/options.html",
        "default_icon": "images\/cursor-highlighter-logo-sm.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": false,
            "js": [
                "dist\/main.bundle.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/cursor-highlighter-logo-sm.png",
        "48": "images\/cursor-highlighter-logo-md.png",
        "128": "images\/cursor-highlighter-logo-lg.png"
    }
}