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