Cursor Pet

A cute little pet that follows your cursor.

Hvad er Cursor Pet?

Cursor Pet er en Chrome-udvidelse udviklet af April Huang, og dens hovedfunktion er "A cute little pet that follows your cursor.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Cursor Pet-udvidelses-CRX-fil

Download Cursor Pet-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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).                    

Grundlæggende oplysninger om udvidelsen

Navn Cursor Pet Cursor Pet
ID iiabgfkclnahbclmddagjnkjhloepclb
Officiel URL https://chromewebstore.google.com/detail/cursor-pet/iiabgfkclnahbclmddagjnkjhloepclb
Beskrivelse A cute little pet that follows your cursor.
Filstørrelse 134 KB
Antal Installationer 81
Nuværende Version 1.1.0
Senest Opdateret 2023-12-13
Udgivelsesdato 2023-06-25
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler April Huang
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}