Animated Cursors Forever!

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

Qu'est-ce que Animated Cursors Forever! ?

Animated Cursors Forever! est une extension Chrome développée par lettuce, et sa fonction principale est "Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Animated Cursors Forever!

Téléchargez les fichiers d'extension Animated Cursors Forever! au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Animated Cursors Forever! Animated Cursors Forever!
ID glbompdcoknijlagjdallgimohbcopem
URL Officiel https://chromewebstore.google.com/detail/animated-cursors-forever/glbompdcoknijlagjdallgimohbcopem
Description Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.
Taille du Fichier 221 KB
Nombre d'Installations 14,514
Version Actuelle 1.4
Dernière Mise à Jour 2023-08-30
Date de Publication 2021-03-07
Évaluation 3.57/5 Total 23 Évaluations
Développeur lettuce
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/lettucegoblin/animated-cursors-forever-extension
URL de la Page d'Aide https://github.com/lettucegoblin/animated-cursors-forever-extension
Langues Prises en Charge 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
}