Cursorlux - Mouse Highlighter

A customizable mouse highlighter extension to highlight your cursor and clicks!

ما هو Cursorlux - Mouse Highlighter؟

Cursorlux - Mouse Highlighter هو إضافة Chrome تم تطويرها بواسطة Joshua Daniel، والميزة الرئيسية لها هي "A customizable mouse highlighter extension to highlight your cursor and clicks!".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Cursorlux - Mouse Highlighter

قم بتنزيل ملفات الامتداد Cursorlux - Mouse Highlighter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        What Cursorlux does:
★ Highlights your cursor and clicks
★ Allows you to customize the color, size, opacity, etc.
★ Provides you options for click, background, and border styles
★ Syncs your custom settings across your various Google accounts
★ Enables you to activate/pause the extension on the fly

Use Cases:
★ Screen Sharing
★ Screen Recording (Tutorials, Demos, etc.)
★ Accessibility Needs for the Visually Impaired
★ Or you just want your cursor to stand out more!

==============================

Free and Open Source:
https://github.com/joshuajadaniel/cursorlux                    

معلومات أساسية عن التمديد

الاسم Cursorlux - Mouse Highlighter Cursorlux - Mouse Highlighter
ID nbnfkhblcofmmbeamohjmmjfmfmhknpj
عنوان URL الرسمي https://chromewebstore.google.com/detail/cursorlux-mouse-highlight/nbnfkhblcofmmbeamohjmmjfmfmhknpj
الوصف A customizable mouse highlighter extension to highlight your cursor and clicks!
حجم الملف 146 KB
عدد التثبيتات 2,411
النسخة الحالية 1.0.0
آخر تحديث 2021-03-20
تاريخ النشر 2021-03-20
تقييم 4.23/5 مجموع تقييمات 13
المطور Joshua Daniel
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Cursorlux",
    "name": "Cursorlux - Mouse Highlighter",
    "homepage_url": "https:\/\/github.com\/joshuajadaniel\/cursorlux",
    "version": "1.0.0",
    "description": "A customizable mouse highlighter extension to highlight your cursor and clicks!",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "96": "icon96.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_popup": "index.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "foreground.js"
            ],
            "css": [
                "foreground.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "manifest_version": 2
}