Animated Cursors Forever!

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

Τι είναι το Animated Cursors Forever!;

Το Animated Cursors Forever! είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον lettuce, και η κύρια λειτουργία του είναι "Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Animated Cursors Forever!

Λήψη αρχείων επέκτασης Animated Cursors Forever! σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Animated Cursors Forever! Animated Cursors Forever!
ID glbompdcoknijlagjdallgimohbcopem
Επίσημο URL https://chromewebstore.google.com/detail/animated-cursors-forever/glbompdcoknijlagjdallgimohbcopem
Περιγραφή Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.
Μέγεθος Αρχείου 221 KB
Αριθμός Εγκαταστάσεων 14,514
Τρέχουσα Έκδοση 1.4
Τελευταία Ενημέρωση 2023-08-30
Ημερομηνία Δημοσίευσης 2021-03-07
Αξιολόγηση 3.57/5 Συνολικά 23 Αξιολογήσεις
Προγραμματιστής lettuce
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/lettucegoblin/animated-cursors-forever-extension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/lettucegoblin/animated-cursors-forever-extension
Υποστηριζόμενες Γλώσσες 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
}