CursorTrace

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

Co to jest CursorTrace?

CursorTrace to rozszerzenie Chrome opracowane przez hansy.cws, a jego główną funkcją jest „Trace your mouse cursor's path with an evanescent line.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia CursorTrace

Pobierz pliki rozszerzeń CursorTrace w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa CursorTrace CursorTrace
ID gdngbglapejijhppfmpaofmcgbcpofnj
Oficjalny URL https://chromewebstore.google.com/detail/cursortrace/gdngbglapejijhppfmpaofmcgbcpofnj
Opis Trace your mouse cursor's path with an evanescent line.
Rozmiar pliku 20.99 KB
Liczba instalacji 2,243
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-07-29
Data Publikacji 2020-07-28
Ocena 3.53/5 Łącznie 15 Oceny
Deweloper hansy.cws
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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'"
}