Animated Cursors Forever!

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

Animated Cursors Forever!とは何ですか?

Animated Cursors Forever!はlettuceによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.」です。

拡張機能のスクリーンショット

screenshot

Animated Cursors Forever!拡張機能のCRXファイルをダウンロード

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
Eメール [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
}