UW Ad Tracker

Help researchers at the University of Washington learn about how ads target you

Τι είναι το UW Ad Tracker;

Το UW Ad Tracker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον UW CSE Security & Privacy Lab, και η κύρια λειτουργία του είναι "Help researchers at the University of Washington learn about how ads target you".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης UW Ad Tracker

Λήψη αρχείων επέκτασης UW Ad Tracker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension is part of a research study from the Paul G. Allen School of Computer Science & Engineering at the University of Washington. We are hoping to learn about how much advertisers pay to show you ads, and how they may be targeting you. As part of the study, you will temporarily install this extension, and browse to 10 websites provided by us.

During the study, our extension will automatically collect the following info:
1. The price the advertiser paid to show you the ad
2. A screenshot of the ad
3. The website the ad appeared on
4. Data about web trackers and analytics on the site

For more info, please visit the study website at https://adsurvey.kadara.cs.washington.edu, or contact the researchers at [email protected].                    

Βασικές Πληροφορίες Επέκτασης

Όνομα UW Ad Tracker UW Ad Tracker
ID kmfpbehfigfcpclciimgdngokbefgohd
Επίσημο URL https://chromewebstore.google.com/detail/uw-ad-tracker/kmfpbehfigfcpclciimgdngokbefgohd
Περιγραφή Help researchers at the University of Washington learn about how ads target you
Μέγεθος Αρχείου 3.31 MB
Αριθμός Εγκαταστάσεων 13
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2021-12-09
Ημερομηνία Δημοσίευσης 2021-06-07
Προγραμματιστής UW CSE Security & Privacy Lab
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://adsurvey.kadara.cs.washington.edu
URL της Σελίδας Πολιτικής Απορρήτου https://adsurvey.kadara.cs.washington.edu/privacy.html
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UW Ad Tracker",
    "version": "1.2",
    "description": "Help researchers at the University of Washington learn about how ads target you",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "",
        "webRequest",
        "storage",
        "unlimitedStorage",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "easylist_selectors.json",
        "manual_selectors.json"
    ],
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "\/img\/icon.png"
    }
}