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
官方網址 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
}