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
}