TrackingObserver

A browser-based web tracking detection platform.

TrackingObserverคืออะไร?

TrackingObserver เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Web Tracking Privacy Team (University of Washington Computer Science and Engineering) และคุณลักษณะหลักของมันคือ "A browser-based web tracking detection platform."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TrackingObserver

ดาวน์โหลดไฟล์ส่วนขยาย TrackingObserver ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        As you browse the web, your browsing behavior may be observed and aggregated by third-party websites ("trackers") that you don't visit directly. These trackers are generally embedded by host websites in the form of advertisements, social media widgets (e.g., the Facebook "Like" button), or web analytics platforms (e.g., Google Analytics).

TrackingObserver is a Chrome extension that acts as a platform for detecting, measuring, and blocking third-party web trackers. Unlike other tools, TrackingObserver does not use a blacklist of known tracking domains, but rather detects trackers automatically based on their in-browser behaviors (such as setting and receiving third-party cookies).

Different trackers exhibit different behaviors, which give them different capabilities. For example, some trackers can track you only when you return to the same site, while others can track you as you browse multiple different sites. TrackingObserver automatically categorizes trackers according to the taxonomy described at http://trackingobserver.cs.washington.edu/.

TrackingObserver is not just a stand-alone Chrome extension, but a platform. It exposes APIs for tracking detection, measurement, and blocking, and you can install or develop add-ons that provide visualization or other functionality. TrackingObserver prevents add-ons from needing to reinvent or reimplement its automatic tracking detection algorithm, while allowing them to innovate in other ways.

We hope that TrackingObserver will be valuable for users, developers, and web tracking researchers.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ TrackingObserver TrackingObserver
ID obheeflpdipmaefcoefhimnaihmhpkao
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/trackingobserver/obheeflpdipmaefcoefhimnaihmhpkao
คำอธิบาย A browser-based web tracking detection platform.
ขนาดไฟล์ 37 KB
จำนวนการติดตั้ง 395
เวอร์ชันปัจจุบัน 0.3
อัปเดตครั้งล่าสุด 2015-07-20
วันที่เผยแพร่ 2015-07-20
ผู้พัฒนา Web Tracking Privacy Team (University of Washington Computer Science and Engineering)
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://trackingobserver.cs.washington.edu/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TrackingObserver",
    "version": "0.3",
    "manifest_version": 2,
    "description": "A browser-based web tracking detection platform.",
    "icons": {
        "16": "Icons\/16.png",
        "48": "Icons\/48.png",
        "128": "Icons\/128.png"
    },
    "background": {
        "scripts": [
            "Background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "ContentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "background",
        "cookies",
        "history",
        "management",
        "storage",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": "Icons\/16.png",
        "default_popup": "Popup.html",
        "default_title": "TrackingObserver"
    }
}