CursorSpin

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

CursorSpin là gì?

CursorSpin là một tiện ích mở rộng Chrome được phát triển bởi undefined0, và tính năng chính của nó là "Makes the cursor spin round and round, a small project to annoy friends and family.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng CursorSpin 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

                        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.                    

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

Tên CursorSpin CursorSpin
ID pionfdknagiogggdballaniaofooijab
URL Chính Thức https://chromewebstore.google.com/detail/cursorspin/pionfdknagiogggdballaniaofooijab
Mô tả Makes the cursor spin round and round, a small project to annoy friends and family.
Kích Thước Tệp 11.13 KB
Số Lần Cài Đặt 33
Phiên Bản Hiện Tại 1.6
Cập Nhật Lần Cuối 2022-09-09
Ngày Phát Hành 2022-08-15
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển undefined0
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}