CursorTrace

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

CursorTrace क्या है?

CursorTrace hansy.cws द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Trace your mouse cursor's path with an evanescent line."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CursorTrace एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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'"
}