CursorSpin

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

CursorSpinคืออะไร?

CursorSpin เป็นส่วนขยายของ Chrome ที่พัฒนาโดย undefined0 และคุณลักษณะหลักของมันคือ "Makes the cursor spin round and round, a small project to annoy friends and family."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CursorSpin

ดาวน์โหลดไฟล์ส่วนขยาย CursorSpin ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}