AdThrive Ads Debug

AdThrive Ads Debug

Ad code url and version overrides

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AdThrive Ads Debug",
  "description": "Ad code url and version overrides",
  "version": "3.15.1",
  "background": {
    "service_worker": "static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "static/js/content.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": "./off128.png",
    "default_title": "AdThrive Ads Debug",
    "default_popup": "./index.html"
  },
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "activeTab",
    "scripting",
    "webNavigation"
  ],
  "host_permissions": [
    "*://ads.adthrive.com/*",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "resources/inject.js",
        "resources/ads.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}