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
官方網址 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
電子郵箱 [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'"
}