Animated Cursors Forever!

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

Co to jest Animated Cursors Forever!?

Animated Cursors Forever! to rozszerzenie Chrome opracowane przez lettuce, a jego główną funkcją jest „Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Animated Cursors Forever!

Pobierz pliki rozszerzeń Animated Cursors Forever! w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Animated Cursors Forever! Animated Cursors Forever!
ID glbompdcoknijlagjdallgimohbcopem
Oficjalny URL https://chromewebstore.google.com/detail/animated-cursors-forever/glbompdcoknijlagjdallgimohbcopem
Opis Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.
Rozmiar pliku 221 KB
Liczba instalacji 14,514
Aktualna Wersja 1.4
Ostatnia Aktualizacja 2023-08-30
Data Publikacji 2021-03-07
Ocena 3.57/5 Łącznie 23 Oceny
Deweloper lettuce
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/lettucegoblin/animated-cursors-forever-extension
Adres URL Strony Pomocy https://github.com/lettucegoblin/animated-cursors-forever-extension
Obsługiwane Języki 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
}