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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}