Animated Cursors Forever!

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

Animated Cursors Forever! là gì?

Animated Cursors Forever! là một tiện ích mở rộng Chrome được phát triển bởi lettuce, và tính năng chính của nó là "Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Animated Cursors Forever!

Tải xuống các tệp mở rộng Animated Cursors Forever! dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Animated Cursors Forever! Animated Cursors Forever!
ID glbompdcoknijlagjdallgimohbcopem
URL Chính Thức https://chromewebstore.google.com/detail/animated-cursors-forever/glbompdcoknijlagjdallgimohbcopem
Mô tả Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.
Kích Thước Tệp 221 KB
Số Lần Cài Đặt 14,514
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2023-08-30
Ngày Phát Hành 2021-03-07
Đánh Giá 3.57/5 Tổng số 23 Đánh Giá
Nhà Phát Triển lettuce
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lettucegoblin/animated-cursors-forever-extension
URL Trang Trợ Giúp https://github.com/lettucegoblin/animated-cursors-forever-extension
Ngôn Ngữ Được Hỗ Trợ 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
}