CursorSpin

Makes the cursor spin round and round, a small project to annoy friends and family.

CursorSpin란 무엇입니까?

CursorSpin은(는) undefined0에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes the cursor spin round and round, a small project to annoy friends and family."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

CursorSpin 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This makes the mouse pointer spin around and around endlessly! A little thing to annoy friends and family.

This was made in about a week. It's simple and does not require any work to install, just download the extension, and it will automatically start rotating your cursor on most websites*.


*Some websites may not work, and this cannot work over iframes (ads, sandboxes etc.). As well as this, this does not physically move your cursor - it only displays a rotated cursor.

—————

Ver 1.6: Size can now be changed, with a more user-friendly slider.                    

확장 프로그램 기본 정보

이름 CursorSpin CursorSpin
ID pionfdknagiogggdballaniaofooijab
공식 URL https://chromewebstore.google.com/detail/cursorspin/pionfdknagiogggdballaniaofooijab
설명 Makes the cursor spin round and round, a small project to annoy friends and family.
파일 크기 11.13 KB
설치 횟수 33
현재 버전 1.6
최근 업데이트 2022-09-09
출시 날짜 2022-08-15
평점 5.00/5 총 1 개의 평점
개발자 undefined0
이메일 [email protected]
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CursorSpin",
    "description": "Makes the cursor spin round and round, a small project to annoy friends and family.",
    "version": "1.6",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "32": "images\/icon32.png",
            "64": "images\/icon64.png",
            "128": "images\/icon128.png"
        },
        "default_title": "CursorSpin Settings",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "32": "images\/icon32.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*\/"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "images\/cur.png"
            ]
        }
    ]
}