Mouse Pointer Highlighter

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

Mouse Pointer Highlighterคืออะไร?

Mouse Pointer Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vonrehberg.developer และคุณลักษณะหลักของมันคือ "This extension will highlight your mouse cursor and your mouse clicks."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mouse Pointer Highlighter

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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
}