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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}