CursorTrace

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

Was ist CursorTrace?

CursorTrace ist eine Chrome-Erweiterung, die von hansy.cws entwickelt wurde, und ihr Hauptmerkmal ist "Trace your mouse cursor's path with an evanescent line.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

CursorTrace-Erweiterungs-CRX-Datei herunterladen

Laden Sie CursorTrace-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name CursorTrace CursorTrace
ID gdngbglapejijhppfmpaofmcgbcpofnj
Offizielle URL https://chromewebstore.google.com/detail/cursortrace/gdngbglapejijhppfmpaofmcgbcpofnj
Beschreibung Trace your mouse cursor's path with an evanescent line.
Dateigröße 20.99 KB
Installationsanzahl 2,243
Aktuelle Version 1.0
Letztes Update 2020-07-29
Veröffentlichungsdatum 2020-07-28
Bewertung 3.53/5 Insgesamt 15 Bewertungen
Entwickler hansy.cws
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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'"
}