CursorSpin

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

Vad är CursorSpin?

CursorSpin är en Chrome-tillägg utvecklad av undefined0, och dess huvudfunktion är "Makes the cursor spin round and round, a small project to annoy friends and family.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner CursorSpin-förlängningens CRX-fil

Ladda ner CursorSpin-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn CursorSpin CursorSpin
ID pionfdknagiogggdballaniaofooijab
Officiell webbadress https://chromewebstore.google.com/detail/cursorspin/pionfdknagiogggdballaniaofooijab
Beskrivning Makes the cursor spin round and round, a small project to annoy friends and family.
Filstorlek 11.13 KB
Antal Installationer 33
Aktuell Version 1.6
Senast Uppdaterad 2022-09-09
Publiceringsdatum 2022-08-15
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare undefined0
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}