Cursor Pet

A cute little pet that follows your cursor.

ما هو Cursor Pet؟

Cursor Pet هو إضافة Chrome تم تطويرها بواسطة April Huang، والميزة الرئيسية لها هي "A cute little pet that follows your cursor.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Cursor Pet

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

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

                        FEATURES
- A floating Paimon companion that follows your cursor.
- Never lose track of your cursor.
- The image is non-intrusive and doesn't block mouse clicks.
- The image temporarily disappears when the cursor idles.

v1.1.0 NEW FEATURES
- Change icon to any image of your choice.
- Change size of the image, flip the image, and adjust distance from the cursor.

This extension should work on most web pages (the image will not appear on new tabs, the Chrome Web Store pages, and some other sites).                    

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

الاسم Cursor Pet Cursor Pet
ID iiabgfkclnahbclmddagjnkjhloepclb
عنوان URL الرسمي https://chromewebstore.google.com/detail/cursor-pet/iiabgfkclnahbclmddagjnkjhloepclb
الوصف A cute little pet that follows your cursor.
حجم الملف 134 KB
عدد التثبيتات 81
النسخة الحالية 1.1.0
آخر تحديث 2023-12-13
تاريخ النشر 2023-06-25
تقييم 5.00/5 مجموع تقييمات 1
المطور April Huang
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Cursor Pet",
    "version": "1.1.0",
    "description": "A cute little pet that follows your cursor.",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "chibi_paimon_cautious.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}