EFF Tracker Blocking Laboratory

EFF Tracker Blocking Laboratory

EFF web tracker measurement laboratory

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "lib/compat.js",
      "lib/io.js",
      "lib/adblockplus.js",
      "lib/punycode.js",
      "lib/publicSuffixList.js",
      "lib/basedomain.js",
      "lib/sha1.js",
      "lib/jsbn.js",
      "lib/rsa.js",
      "webrequest.js",
      "popupBlocker.js",
      "heuristicblocking.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "include.preload.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "include.postload.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en_US",
  "description": "__MSG_description__",
  "icons": {
    "16": "icons/test-16.png",
    "19": "icons/test-19.png",
    "32": "icons/test-32.png",
    "48": "icons/test-48.png",
    "128": "icons/test-128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "18.0",
  "name": "__MSG_name__",
  "page_action": {
    "default_icon": "icons/test-19.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_name__"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "unlimitedStorage",
    "storage"
  ],
  "version": "0.1",
  "web_accessible_resources": [
    "block.html"
  ]
}