UltraBlock - Privacy Protection & Adblock

UltraBlock - Privacy Protection & Adblock

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


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "version": "1.6.6",
  "description": "__MSG_appDesc__",
  "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"
  },
  "author": "Ninble",
  "minimum_chrome_version": "88",
  "incognito": "spanning",
  "background": {
    "service_worker": "js/loader.js"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/backend/document.js"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/backend/frame.js"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "cookies",
    "storage",
    "webRequest",
    "tabs",
    "browsingData",
    "activeTab",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "declarativeNetRequestWithHostAccess"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_title": "UltraBlock",
    "default_icon": "img/logo-green-128x128.png",
    "default_popup": "html/results.html"
  },
  "homepage_url": "https://ultrablock.org/"
}