UW Ad Tracker

UW Ad Tracker

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

Merlin
Additional files are visible only to premium users

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": [
    "<all_urls>",
    "webRequest",
    "storage",
    "unlimitedStorage",
    "webNavigation"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "easylist_selectors.json",
    "manual_selectors.json"
  ],
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "/img/icon.png"
  }
}