Mouse Pointer Highlighter

This extension will highlight your mouse cursor and your mouse clicks.

O que é Mouse Pointer Highlighter?

Mouse Pointer Highlighter é uma extensão do Chrome desenvolvida por vonrehberg.developer, e sua principal característica é "This extension will highlight your mouse cursor and your mouse clicks.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Mouse Pointer Highlighter

Baixe arquivos de extensão Mouse Pointer 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

                        This is a very simple plugin that will highlight your cursor in chrome and indicates click actions.
It should simplyfy screen sharing sessions and help your screen sharing participants comprehend your actions.

https://github.com/VonRehberg/McLick                    

Informações Básicas da Extensão

Nome Mouse Pointer Highlighter Mouse Pointer Highlighter
ID fmpkohnnbginkhhdbgmhabieabmaljib
URL Oficial https://chromewebstore.google.com/detail/mouse-pointer-highlighter/fmpkohnnbginkhhdbgmhabieabmaljib
Descrição This extension will highlight your mouse cursor and your mouse clicks.
Tamanho do Arquivo 67.42 KB
Contagem de Instalações 3,485
Versão Atual 1.1.1
Última Atualização 2021-12-06
Data de Publicação 2019-10-01
Classificação 2.21/5 Total de 24 Avaliações
Desenvolvedor vonrehberg.developer
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/VonRehberg/McLick
URL da Página de Ajuda https://github.com/VonRehberg/McLick
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mouse Pointer Highlighter",
    "description": "This extension will highlight your mouse cursor and your mouse clicks.",
    "version": "1.1.1",
    "permissions": [
        "scripting",
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "title": "Toggle Mouse Highlighter On\/Off",
        "default_icon": "on.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "onOffToggle.js"
    },
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery\/jquery-3.1.0.min.js",
                "highlight.js"
            ],
            "all_frames": true
        }
    ],
    "offline_enabled": true
}