CursorTrace

Trace your mouse cursor's path with an evanescent line.

CursorTraceとは何ですか?

CursorTraceはhansy.cwsによって開発されたChromeの拡張機能で、その主な機能は「Trace your mouse cursor's path with an evanescent line.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

CursorTrace拡張機能のCRXファイルをダウンロード

CursorTrace拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Liven up your mouse cursor with this little extension.

As you move your mouse, CursorTrace draws a pen stroke behind the cursor, tracing its path before disappearing.

Choose from one of five different pen colors.

Note:
As with all Chrome extensions, CursorTrace will not work on Chrome Web Store pages. Navigate to another page - like www.google.com - to see CursorTrace do its magic.                    

拡張機能の基本情報

名前 CursorTrace CursorTrace
ID gdngbglapejijhppfmpaofmcgbcpofnj
公式URL https://chromewebstore.google.com/detail/cursortrace/gdngbglapejijhppfmpaofmcgbcpofnj
説明 Trace your mouse cursor's path with an evanescent line.
ファイルサイズ 20.99 KB
インストール数 2,243
現在のバージョン 1.0
最終更新日 2020-07-29
公開日 2020-07-28
評価 3.53/5 合計 15 レビュー
開発者 hansy.cws
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CursorTrace",
    "description": "Trace your mouse cursor's path with an evanescent line.",
    "version": "1.0",
    "incognito": "not_allowed",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "https:\/\/developer.chrome.com\/*",
                "http:\/\/developer.chrome.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "content_security_policy": "default-src 'self'"
}