UW Ad Tracker

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

UW Ad Tracker란 무엇입니까?

UW Ad Tracker은(는) UW CSE Security & Privacy Lab에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Help researchers at the University of Washington learn about how ads target you"입니다.

확장 프로그램 스크린샷

screenshot

UW Ad Tracker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
    }
}