Trace

A Chrome extension for web analytics

Trace là gì?

Trace là một tiện ích mở rộng Chrome được phát triển bởi L018, và tính năng chính của nó là "A Chrome extension for web analytics".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Trace

Tải xuống các tệp mở rộng Trace dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Trace Trace
ID cfpdmpepieedplgjphncpgiipkcjennh
URL Chính Thức https://chromewebstore.google.com/detail/trace/cfpdmpepieedplgjphncpgiipkcjennh
Mô tả A Chrome extension for web analytics
Kích Thước Tệp 525 KB
Số Lần Cài Đặt 523
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2022-04-03
Ngày Phát Hành 2022-04-02
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển L018
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/L018/Trace
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}