Trace - Online Tracking Protection

Browse online without leaving a Trace, because who wants to be tracked?

Trace - Online Tracking Protection란 무엇입니까?

Trace - Online Tracking Protection은(는) AbsoluteDouble에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browse online without leaving a Trace, because who wants to be tracked?"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Trace - Online Tracking Protection 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Trace

An extension to stop multiple advanced tracking techniques employed by websites all over the web.

====================================

Trace can protect against:
 - Canvas Fingerprint Spoofing
 - Audio Fingerprinting Protection
 - WebGL Fingerprinting Protection
 - JS Crypto Currency Mining Domain Blocking
 - WebRTC IP Leakage Protection
 - WebRTC Device Enumeration Protection
 - Client Rects Protection
 - User-Agent Spoofing
 - Network Information API Spoofing
 - Browser Plugin Fingerprinting Protection
 - Hardware Fingerprinting Protection
 - Beacon/'Ping' Request Blocking
 - Blocks Malicious Top Level Domains
 - Hyperlink Auditing Prevention
 - HTTP Referrer Headers Controls
 - Google Header Tracking Controls
 - E-Tag Tracking Mitigation
 - Screen Resolution Spoofing
 - Battery API Spoofing
 - Removal of specific Tracking Cookies
 - Removal of URL Tracking Parameters

A Changelog is available here:
https://absolutedouble.co.uk/trace/information.html

Source code is available here:
https://github.com/jake-cryptic/AbsoluteDoubleTrace/

====================================

Trace was made in my spare time as an extension to stop online tracking and give the user more control over browser features which may have been hard to find, or in other cases enabled with no option to disable. There is no team of developers behind Trace, I wrote it by myself and so you can be sure that there is no evil corporation behind it trying to get your data.

====================================

Privacy Policy can be found in the options page or at: https://absolutedouble.co.uk/trace/privacy.html                    

확장 프로그램 기본 정보

이름 Trace - Online Tracking Protection Trace - Online Tracking Protection
ID njkmjblmcfiobddjgebnoeldkjcplfjb
공식 URL https://chromewebstore.google.com/detail/trace-online-tracking-pro/njkmjblmcfiobddjgebnoeldkjcplfjb
설명 Browse online without leaving a Trace, because who wants to be tracked?
파일 크기 341 KB
설치 횟수 44,632
현재 버전 3.0.6
최근 업데이트 2021-06-01
출시 날짜 2020-03-12
평점 4.30/5 총 54 개의 평점
개발자 AbsoluteDouble
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://absolutedouble.co.uk/trace/
도움말 페이지 URL https://absolutedouble.co.uk/trace/faq.html
개인정보 보호 정책 페이지 URL https://absolutedouble.co.uk/trace/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_addon_name__",
    "short_name": "Trace",
    "author": "AbsoluteDouble",
    "description": "__MSG_addon_description__",
    "default_locale": "en",
    "minimum_chrome_version": "41",
    "version": "3.0.6",
    "homepage_url": "https:\/\/absolutedouble.co.uk\/trace\/",
    "options_page": "html\/options.html",
    "options_ui": {
        "page": "html\/options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "incognito": "spanning",
    "browser_action": {
        "default_icon": {
            "32": "icons\/trace_32.png",
            "64": "icons\/trace_64.png",
            "128": "icons\/trace_128.png",
            "256": "icons\/trace_256.png"
        },
        "default_title": "Trace | Tracking Protection",
        "default_popup": "html\/report.html"
    },
    "commands": {
        "ToggleTraceWeb": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Toggle Web Controller"
        },
        "PauseTrace": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+F"
            },
            "description": "Pause Trace"
        },
        "OpenTraceSettings": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            },
            "description": "Open the Trace dashboard"
        }
    },
    "icons": {
        "32": "icons\/trace_32.png",
        "64": "icons\/trace_64.png",
        "128": "icons\/trace_128.png",
        "256": "icons\/trace_256.png"
    },
    "permissions": [
        "alarms",
        "notifications",
        "privacy",
        "storage",
        "unlimitedStorage",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "scripts": [
            "js\/libraries\/cookieparse.js",
            "js\/libraries\/jquery.js",
            "js\/common\/data.js",
            "js\/common\/shared.js",
            "js\/background\/alarms.js",
            "js\/background\/background.js",
            "js\/background\/headers.js",
            "js\/background\/prefs.js",
            "js\/background\/session.js",
            "js\/background\/simple.js",
            "js\/background\/stats.js",
            "js\/background\/tabs.js",
            "js\/background\/vars.js",
            "js\/background\/web.js",
            "js\/background\/whitelist.js",
            "js\/background\/trace.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/contentscript\/page.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "match_about_blank": false,
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "js": [
                "js\/contentscript\/loaded.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "match_about_blank": false,
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "html\/blocked.html",
        "js\/pages\/blocked.js",
        "js\/common\/ux.js",
        "js\/common\/shared.js",
        "js\/libraries\/jquery.js"
    ],
    "content_security_policy": "default-src 'none'; style-src 'unsafe-inline'; object-src 'self'; script-src 'self'; connect-src https:\/\/absolutedouble.co.uk https:\/\/trace-extension.absolutedouble.co.uk https:\/\/raw.githubusercontent.com"
}