Animated Cursors Forever!

Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.

¿Qué es Animated Cursors Forever!?

Animated Cursors Forever! es una extensión de Chrome desarrollada por lettuce, y su función principal es "Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Animated Cursors Forever!

Descarga archivos de extensión Animated Cursors Forever! 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

                        Adds ~0.4ms to page loading.

Animated cursors used to be a thing on the web until browsers discontinued them a decade ago. This brings back .ani support to the web. Long live animated cursors ✨

This collects absolutely no data and is open source.
https://github.com/lettucegoblin/animated-cursors-forever-extension

If a specific cursor doesnt work please link it in your feedback.

This extension asks for Host and Storage permissions. Host is for injecting the cursor into every page you visit. Storage is for storing the cursor files.                    

Información Básica de la Extensión

Nombre Animated Cursors Forever! Animated Cursors Forever!
ID glbompdcoknijlagjdallgimohbcopem
URL Oficial https://chromewebstore.google.com/detail/animated-cursors-forever/glbompdcoknijlagjdallgimohbcopem
Descripción Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.
Tamaño del Archivo 221 KB
Cantidad de Instalaciones 14,514
Versión Actual 1.4
Última Actualización 2023-08-30
Fecha de Publicación 2021-03-07
Calificación 3.57/5 Total de 23 Calificaciones
Desarrollador lettuce
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/lettucegoblin/animated-cursors-forever-extension
URL de la Página de Ayuda https://github.com/lettucegoblin/animated-cursors-forever-extension
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Animated Cursors Forever!",
    "version": "1.4",
    "description": "Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "aniImport.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "animcursors.js",
                "injectCursor.js"
            ]
        }
    ],
    "manifest_version": 2
}