Cursor Pet

A cute little pet that follows your cursor.

¿Qué es Cursor Pet?

Cursor Pet es una extensión de Chrome desarrollada por April Huang, y su función principal es "A cute little pet that follows your cursor.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Cursor Pet

Descarga archivos de extensión Cursor Pet en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Cursor Pet Cursor Pet
ID iiabgfkclnahbclmddagjnkjhloepclb
URL Oficial https://chromewebstore.google.com/detail/cursor-pet/iiabgfkclnahbclmddagjnkjhloepclb
Descripción A cute little pet that follows your cursor.
Tamaño del Archivo 134 KB
Cantidad de Instalaciones 81
Versión Actual 1.1.0
Última Actualización 2023-12-13
Fecha de Publicación 2023-06-25
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador April Huang
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}