Cursorlux - Mouse Highlighter

A customizable mouse highlighter extension to highlight your cursor and clicks!

Vad är Cursorlux - Mouse Highlighter?

Cursorlux - Mouse Highlighter är en Chrome-tillägg utvecklad av Joshua Daniel, och dess huvudfunktion är "A customizable mouse highlighter extension to highlight your cursor and clicks!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Cursorlux - Mouse Highlighter-förlängningens CRX-fil

Ladda ner Cursorlux - Mouse 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

                        What Cursorlux does:
★ Highlights your cursor and clicks
★ Allows you to customize the color, size, opacity, etc.
★ Provides you options for click, background, and border styles
★ Syncs your custom settings across your various Google accounts
★ Enables you to activate/pause the extension on the fly

Use Cases:
★ Screen Sharing
★ Screen Recording (Tutorials, Demos, etc.)
★ Accessibility Needs for the Visually Impaired
★ Or you just want your cursor to stand out more!

==============================

Free and Open Source:
https://github.com/joshuajadaniel/cursorlux                    

Grundläggande Information om Tillägg

Namn Cursorlux - Mouse Highlighter Cursorlux - Mouse Highlighter
ID nbnfkhblcofmmbeamohjmmjfmfmhknpj
Officiell webbadress https://chromewebstore.google.com/detail/cursorlux-mouse-highlight/nbnfkhblcofmmbeamohjmmjfmfmhknpj
Beskrivning A customizable mouse highlighter extension to highlight your cursor and clicks!
Filstorlek 146 KB
Antal Installationer 2,411
Aktuell Version 1.0.0
Senast Uppdaterad 2021-03-20
Publiceringsdatum 2021-03-20
Betyg 4.23/5 Totalt 13 Betyg
Utvecklare Joshua Daniel
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Cursorlux",
    "name": "Cursorlux - Mouse Highlighter",
    "homepage_url": "https:\/\/github.com\/joshuajadaniel\/cursorlux",
    "version": "1.0.0",
    "description": "A customizable mouse highlighter extension to highlight your cursor and clicks!",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "96": "icon96.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_popup": "index.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "foreground.js"
            ],
            "css": [
                "foreground.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "manifest_version": 2
}