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