CursorSpin

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

Co je CursorSpin?

CursorSpin je rozšíření Chrome vyvinuté undefined0, a jeho hlavní funkcí je „Makes the cursor spin round and round, a small project to annoy friends and family.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření CursorSpin

Stáhněte si soubory rozšíření CursorSpin ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název CursorSpin CursorSpin
ID pionfdknagiogggdballaniaofooijab
Oficiální URL https://chromewebstore.google.com/detail/cursorspin/pionfdknagiogggdballaniaofooijab
Popis Makes the cursor spin round and round, a small project to annoy friends and family.
Velikost souboru 11.13 KB
Počet instalací 33
Aktuální Verze 1.6
Poslední Aktualizace 2022-09-09
Datum Vydání 2022-08-15
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář undefined0
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}