Setupad

Setupad

This extension shows an overlay on top of the ads that are served from the Setupad monetization platform.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Setupad",
  "version": "2.0.11",
  "description": "This extension shows an overlay on top of the ads that are served from the Setupad monetization platform.",
  "icons": {
    "128": "img/setupadLogo.png"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "*://*/*",
    "<all_urls>"
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "unlimitedStorage"
  ],
  "action": {
    "default_icon": "img/loginRequired.png",
    "default_title": "Setupad",
    "default_popup": "popup/popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/iframeScript.js",
        "scripts/events.js",
        "fonts/Undeka-regular.woff",
        "fonts/Undeka-bold.woff"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3
}