Trace

A Chrome extension for web analytics

Trace란 무엇입니까?

Trace은(는) L018에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension for web analytics"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Trace 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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": [
                ""
            ]
        }
    ]
}