Mouse Pointer Highlighter

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

What is Mouse Pointer Highlighter?

Mouse Pointer Highlighter is a Chrome extension developed by vonrehberg.developer, and its main feature is "This extension will highlight your mouse cursor and your mouse clicks.".

Extension Screenshots

screenshot

Download Mouse Pointer Highlighter Extension CRX File

Download Mouse Pointer Highlighter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Mouse Pointer Highlighter Mouse Pointer Highlighter
ID fmpkohnnbginkhhdbgmhabieabmaljib
Official URL https://chromewebstore.google.com/detail/mouse-pointer-highlighter/fmpkohnnbginkhhdbgmhabieabmaljib
Description This extension will highlight your mouse cursor and your mouse clicks.
File Size 67.42 KB
Installation Count 3,485
Current Version 1.1.1
Last Updated 2021-12-06
Publish Date 2019-10-01
Rating 2.21/5 Total 24 Ratings
Developer vonrehberg.developer
Email [email protected]
Payment Type free
Extension Website https://github.com/VonRehberg/McLick
Help Page URL https://github.com/VonRehberg/McLick
Supported Languages 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
}