Cursor Highlighter

Add a visual indicator to your mouse cursor for better visibility

Cos'è Cursor Highlighter?

Cursor Highlighter è un'estensione di Chrome sviluppata da Alexander Lyon, e la sua funzione principale è "Add a visual indicator to your mouse cursor for better visibility".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Cursor Highlighter

Scarica i file di estensione Cursor Highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Cursor Highlighter Cursor Highlighter
ID echjgnggfpiohepohkpfknhjbnccdjlo
URL Ufficiale https://chromewebstore.google.com/detail/cursor-highlighter/echjgnggfpiohepohkpfknhjbnccdjlo
Descrizione Add a visual indicator to your mouse cursor for better visibility
Dimensione del File 60.86 KB
Conteggio Installazioni 11,158
Versione Corrente 2.1.0
Ultimo Aggiornamento 2022-08-08
Data di Pubblicazione 2020-09-20
Valutazione 3.43/5 Totale 28 Valutazioni
Sviluppatore Alexander Lyon
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}