CursorSpin

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

¿Qué es CursorSpin?

CursorSpin es una extensión de Chrome desarrollada por undefined0, y su función principal es "Makes the cursor spin round and round, a small project to annoy friends and family.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión CursorSpin

Descarga archivos de extensión CursorSpin 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

                        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.                    

Información Básica de la Extensión

Nombre CursorSpin CursorSpin
ID pionfdknagiogggdballaniaofooijab
URL Oficial https://chromewebstore.google.com/detail/cursorspin/pionfdknagiogggdballaniaofooijab
Descripción Makes the cursor spin round and round, a small project to annoy friends and family.
Tamaño del Archivo 11.13 KB
Cantidad de Instalaciones 33
Versión Actual 1.6
Última Actualización 2022-09-09
Fecha de Publicación 2022-08-15
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador undefined0
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}