Animated Cursors Forever!

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

Cos'è Animated Cursors Forever!?

Animated Cursors Forever! è un'estensione di Chrome sviluppata da lettuce, e la sua funzione principale è "Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Animated Cursors Forever!

Scarica i file di estensione Animated Cursors Forever! in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Animated Cursors Forever! Animated Cursors Forever!
ID glbompdcoknijlagjdallgimohbcopem
URL Ufficiale https://chromewebstore.google.com/detail/animated-cursors-forever/glbompdcoknijlagjdallgimohbcopem
Descrizione Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.
Dimensione del File 221 KB
Conteggio Installazioni 14,514
Versione Corrente 1.4
Ultimo Aggiornamento 2023-08-30
Data di Pubblicazione 2021-03-07
Valutazione 3.57/5 Totale 23 Valutazioni
Sviluppatore lettuce
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/lettucegoblin/animated-cursors-forever-extension
URL della Pagina di Aiuto https://github.com/lettucegoblin/animated-cursors-forever-extension
Lingue Supportate 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
}