AdBlocker

AdBlocker

Protect your Privacy by blocking Ads, Trackers and removing Cookies. The perfect Adblocker for Clean, Fast and Reliable browsing!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "js/document.js"
      ]
    },
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "js/frame.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/assistant.js",
        "js/preload.js",
        "js/blocker.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "cookies",
    "storage",
    "webRequest",
    "tabs",
    "browsingData",
    "activeTab",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "declarativeNetRequestWithHostAccess"
  ],
  "default_locale": "en",
  "short_name": "__MSG_appShortName__",
  "icons": {
    "16": "img/logo-green-16x16.png",
    "24": "img/logo-green-24x24.png",
    "32": "img/logo-green-32x32.png",
    "64": "img/logo-green-64x64.png",
    "128": "img/logo-green-128x128.png"
  },
  "description": "__MSG_appDesc__",
  "author": "Ninble",
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "homepage_url": "https://ultrablock.org/adblock/",
  "version": "3.0.1",
  "manifest_version": 3,
  "action": {
    "default_popup": "html/results.html",
    "default_title": "UltraBlock",
    "default_icon": "img/logo-green-128x128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "incognito": "spanning",
  "name": "AdBlocker",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}