Ad Footprint

Ad Footprint

Demystify Ad Tech and Optimize Page Performance

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_security_policy": "default-src 'self'  chrome-extension-resource: ; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval';  connect-src *; frame-src *;",
  "description": "Demystify Ad Tech and Optimize Page Performance",
  "devtools_page": "chrome-index.html",
  "manifest_version": 2,
  "name": "Ad Footprint",
  "short_name": "AF",
  "version": "0.1.11",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "frameScript.js",
        "contentScript.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "highlightScript.js",
        "dehighlightScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "pageScript.js",
    "headertagScript.js",
    "pubfoodScript.js",
    "prebidScript.js"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "OX_16x16_Favicon.png",
    "32": "OX_32x32_Favicon.png",
    "48": "OX_48x48_Favicon.png",
    "128": "OX_128x128_Favicon.png"
  },
  "permissions": [
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*",
    "tabs",
    "storage"
  ]
}