Cursorlux - Mouse Highlighter

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

O que é Cursorlux - Mouse Highlighter?

Cursorlux - Mouse Highlighter é uma extensão do Chrome desenvolvida por Joshua Daniel, e sua principal característica é "A customizable mouse highlighter extension to highlight your cursor and clicks!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Cursorlux - Mouse Highlighter

Baixe arquivos de extensão Cursorlux - Mouse Highlighter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Cursorlux - Mouse Highlighter Cursorlux - Mouse Highlighter
ID nbnfkhblcofmmbeamohjmmjfmfmhknpj
URL Oficial https://chromewebstore.google.com/detail/cursorlux-mouse-highlight/nbnfkhblcofmmbeamohjmmjfmfmhknpj
Descrição A customizable mouse highlighter extension to highlight your cursor and clicks!
Tamanho do Arquivo 146 KB
Contagem de Instalações 2,411
Versão Atual 1.0.0
Última Atualização 2021-03-20
Data de Publicação 2021-03-20
Classificação 4.23/5 Total de 13 Avaliações
Desenvolvedor Joshua Daniel
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}