Animated Cursors Forever!

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

O que é Animated Cursors Forever!?

Animated Cursors Forever! é uma extensão do Chrome desenvolvida por lettuce, e sua principal característica é "Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Animated Cursors Forever!

Baixe arquivos de extensão Animated Cursors Forever! no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Animated Cursors Forever! Animated Cursors Forever!
ID glbompdcoknijlagjdallgimohbcopem
URL Oficial https://chromewebstore.google.com/detail/animated-cursors-forever/glbompdcoknijlagjdallgimohbcopem
Descrição Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.
Tamanho do Arquivo 221 KB
Contagem de Instalações 14,514
Versão Atual 1.4
Última Atualização 2023-08-30
Data de Publicação 2021-03-07
Classificação 3.57/5 Total de 23 Avaliações
Desenvolvedor lettuce
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/lettucegoblin/animated-cursors-forever-extension
URL da Página de Ajuda https://github.com/lettucegoblin/animated-cursors-forever-extension
Idiomas Suportados 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
}