Adblocker Unlimited — block ads & browse safe

Adblocker Unlimited — block ads & browse safe

Unlimited Adblock is a powerful but simple, ad blocking tool!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": "img/logo-green-128x128.png",
    "default_popup": "html/results.html",
    "default_title": "Adblocker Unlimited"
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/document.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "js/frame.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "Unlimited Adblock is a powerful but simple, ad blocking tool!",
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png",
    "256": "icons/icon256.png",
    "300": "icons/icon300.png",
    "512": "icons/icon512.png"
  },
  "incognito": "spanning",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "name": "Adblocker Unlimited — block ads & browse safe",
  "permissions": [
    "cookies",
    "storage",
    "webRequest",
    "tabs",
    "browsingData",
    "activeTab",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "declarativeNetRequestWithHostAccess",
    "notifications"
  ],
  "short_name": "__MSG_appShortName__",
  "version": "0.8.3"
}