Mouse Pointer Highlighter

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

什麼是Mouse Pointer Highlighter?

Mouse Pointer Highlighter是由vonrehberg.developer開發的Chrome擴展程式,該擴展的主要功能是“This extension will highlight your mouse cursor and your mouse clicks.”。

擴展截圖

screenshot

下載Mouse Pointer Highlighter擴展crx文件

下載Mouse Pointer Highlighter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Mouse Pointer Highlighter Mouse Pointer Highlighter
ID fmpkohnnbginkhhdbgmhabieabmaljib
官方網址 https://chromewebstore.google.com/detail/mouse-pointer-highlighter/fmpkohnnbginkhhdbgmhabieabmaljib
簡介 This extension will highlight your mouse cursor and your mouse clicks.
檔案大小 67.42 KB
安裝次數 3,485
目前版本 1.1.1
更新時間 2021-12-06
上架時間 2019-10-01
評分 2.21/5 共 24 次評分
開發者 vonrehberg.developer
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/VonRehberg/McLick
說明頁面URL https://github.com/VonRehberg/McLick
支援的語言 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
}