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
公式URL 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
Eメール [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
}