CursorTrace

Trace your mouse cursor's path with an evanescent line.

ما هو CursorTrace؟

CursorTrace هو إضافة Chrome تم تطويرها بواسطة hansy.cws، والميزة الرئيسية لها هي "Trace your mouse cursor's path with an evanescent line.".

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة CursorTrace

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

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

                        Liven up your mouse cursor with this little extension.

As you move your mouse, CursorTrace draws a pen stroke behind the cursor, tracing its path before disappearing.

Choose from one of five different pen colors.

Note:
As with all Chrome extensions, CursorTrace will not work on Chrome Web Store pages. Navigate to another page - like www.google.com - to see CursorTrace do its magic.                    

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

الاسم CursorTrace CursorTrace
ID gdngbglapejijhppfmpaofmcgbcpofnj
عنوان URL الرسمي https://chromewebstore.google.com/detail/cursortrace/gdngbglapejijhppfmpaofmcgbcpofnj
الوصف Trace your mouse cursor's path with an evanescent line.
حجم الملف 20.99 KB
عدد التثبيتات 2,243
النسخة الحالية 1.0
آخر تحديث 2020-07-29
تاريخ النشر 2020-07-28
تقييم 3.53/5 مجموع تقييمات 15
المطور hansy.cws
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CursorTrace",
    "description": "Trace your mouse cursor's path with an evanescent line.",
    "version": "1.0",
    "incognito": "not_allowed",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "https:\/\/developer.chrome.com\/*",
                "http:\/\/developer.chrome.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "content_security_policy": "default-src 'self'"
}