Cursor Pet

A cute little pet that follows your cursor.

O que é Cursor Pet?

Cursor Pet é uma extensão do Chrome desenvolvida por April Huang, e sua principal característica é "A cute little pet that follows your cursor.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Cursor Pet

Baixe arquivos de extensão Cursor Pet no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Cursor Pet Cursor Pet
ID iiabgfkclnahbclmddagjnkjhloepclb
URL Oficial https://chromewebstore.google.com/detail/cursor-pet/iiabgfkclnahbclmddagjnkjhloepclb
Descrição A cute little pet that follows your cursor.
Tamanho do Arquivo 134 KB
Contagem de Instalações 81
Versão Atual 1.1.0
Última Atualização 2023-12-13
Data de Publicação 2023-06-25
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor April Huang
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}