CursorSpin

Makes the cursor spin round and round, a small project to annoy friends and family.

O que é CursorSpin?

CursorSpin é uma extensão do Chrome desenvolvida por undefined0, e sua principal característica é "Makes the cursor spin round and round, a small project to annoy friends and family.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão CursorSpin

Baixe arquivos de extensão CursorSpin 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

                        This makes the mouse pointer spin around and around endlessly! A little thing to annoy friends and family.

This was made in about a week. It's simple and does not require any work to install, just download the extension, and it will automatically start rotating your cursor on most websites*.


*Some websites may not work, and this cannot work over iframes (ads, sandboxes etc.). As well as this, this does not physically move your cursor - it only displays a rotated cursor.

—————

Ver 1.6: Size can now be changed, with a more user-friendly slider.                    

Informações Básicas da Extensão

Nome CursorSpin CursorSpin
ID pionfdknagiogggdballaniaofooijab
URL Oficial https://chromewebstore.google.com/detail/cursorspin/pionfdknagiogggdballaniaofooijab
Descrição Makes the cursor spin round and round, a small project to annoy friends and family.
Tamanho do Arquivo 11.13 KB
Contagem de Instalações 33
Versão Atual 1.6
Última Atualização 2022-09-09
Data de Publicação 2022-08-15
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor undefined0
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CursorSpin",
    "description": "Makes the cursor spin round and round, a small project to annoy friends and family.",
    "version": "1.6",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "32": "images\/icon32.png",
            "64": "images\/icon64.png",
            "128": "images\/icon128.png"
        },
        "default_title": "CursorSpin Settings",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "32": "images\/icon32.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*\/"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "images\/cur.png"
            ]
        }
    ]
}