CursorSpin

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

什么是CursorSpin?

CursorSpin是由undefined0开发的Chrome扩展程序,该扩展的主要功能是“Makes the cursor spin round and round, a small project to annoy friends and family.”。

扩展截图

screenshot
screenshot
screenshot

下载CursorSpin扩展crx文件

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