Trace

A Chrome extension for web analytics

Trace क्या है?

Trace L018 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension for web analytics"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Trace is a Chrome extension for website analysis, the full name is "Trace Trace", aka T 次方.

Trace can be used to help track most of the behavior of the website, not limited to the getting or setting of cookies, the creation and invocation of Elements, and the registration and monitoring of events; based on the hookProxy method, most properties and methods of windows and documents can be tracked. In addition, Trace can also complete Block request, JS injection, response flow, variable tracking and JS deobfuscation.

Features
   1. Track Cookies
   2. Track Events
   3. Track Objects
   4. Script Injection
   5. Block Requests
   6. Variable Tracking
   7. JS Deobfuscation
   8. Response Flow

Privacy
No tracking, no advertising

Source Code
https://github.com/L018/Trace

Bugs / Suggestions
https://github.com/L018/Trace/issues

License
MIT License                    

एक्सटेंशन की मूल जानकारी

नाम Trace Trace
ID cfpdmpepieedplgjphncpgiipkcjennh
आधिकारिक URL https://chromewebstore.google.com/detail/trace/cfpdmpepieedplgjphncpgiipkcjennh
विवरण A Chrome extension for web analytics
फ़ाइल का आकार 525 KB
स्थापना संख्या 523
वर्तमान संस्करण 0.1
अंतिम अपडेट 2022-04-03
प्रकाशन तिथि 2022-04-02
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर L018
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/L018/Trace
समर्थित भाषाएँ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trace",
    "description": "A Chrome extension for web analytics",
    "version": "0.1",
    "manifest_version": 3,
    "minimum_chrome_version": "93",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "webRequest",
        "declarativeNetRequest",
        "debugger"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/Trace16.png",
            "32": "\/images\/Trace32.png",
            "48": "\/images\/Trace48.png",
            "128": "\/images\/Trace128.png"
        }
    },
    "icons": {
        "16": "\/images\/Trace16.png",
        "32": "\/images\/Trace32.png",
        "48": "\/images\/Trace48.png",
        "128": "\/images\/Trace128.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "injectScript.js",
                "traceImprint.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}