Cursor Highlighter

Add a visual indicator to your mouse cursor for better visibility

Vad är Cursor Highlighter?

Cursor Highlighter är en Chrome-tillägg utvecklad av Alexander Lyon, och dess huvudfunktion är "Add a visual indicator to your mouse cursor for better visibility".

Tilläggsskärmbilder

screenshot
screenshot

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

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

                        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!                    

Grundläggande Information om Tillägg

Namn Cursor Highlighter Cursor Highlighter
ID echjgnggfpiohepohkpfknhjbnccdjlo
Officiell webbadress https://chromewebstore.google.com/detail/cursor-highlighter/echjgnggfpiohepohkpfknhjbnccdjlo
Beskrivning Add a visual indicator to your mouse cursor for better visibility
Filstorlek 60.86 KB
Antal Installationer 11,158
Aktuell Version 2.1.0
Senast Uppdaterad 2022-08-08
Publiceringsdatum 2020-09-20
Betyg 3.43/5 Totalt 28 Betyg
Utvecklare Alexander Lyon
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}