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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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
}