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
Eメール [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"
            ]
        }
    ]
}