AdZero Adblocker

AdZero Adblocker

A simple idea powered by a smart add-on. Stop ads and protect your privacy while surfing the Internet!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "AdZero Adblocker developers",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "16": "img/icon_16.png",
      "32": "img/icon_32.png"
    },
    "default_popup": "popup-fenix.html",
    "default_title": "AdZero Adblocker"
  },
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "68.0",
      "id": "{90c2ce49-24fd-4246-87cb-b64744c6c32f}"
    }
  },
  "commands": {
    "_execute_browser_action": {},
    "launch-element-picker": {
      "description": "__MSG_popupTipPicker__"
    },
    "launch-element-zapper": {
      "description": "__MSG_popupTipZapper__"
    },
    "launch-logger": {
      "description": "__MSG_popupTipLog__"
    },
    "open-dashboard": {
      "description": "__MSG_popupTipDashboard__"
    },
    "relax-blocking-mode": {
      "description": "__MSG_relaxBlockingMode__"
    },
    "toggle-cosmetic-filtering": {
      "description": "__MSG_toggleCosmeticFiltering__"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "/js/vapi.js",
        "/js/vapi-client.js",
        "/js/contentscript.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": false,
      "js": [
        "/js/scriptlets/subscriber.js"
      ],
      "matches": [
        "https://easylist.to/*",
        "https://*.fanboy.co.nz/*",
        "https://filterlists.com/*",
        "https://forums.lanik.us/*",
        "https://github.com/*",
        "https://*.github.io/*",
        "https://*.letsblock.it/*"
      ],
      "run_at": "document_idle"
    },
    {
      "all_frames": false,
      "js": [
        "/js/prod-config.js",
        "/js/prod-overlay-contentscript.js",
        "/js/prod-contentscript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extShortDesc__",
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "48": "img/icon_48.png",
    "64": "img/icon_64.png",
    "96": "img/icon_96.png"
  },
  "manifest_version": 2,
  "name": "AdZero Adblocker",
  "options_ui": {
    "open_in_tab": true,
    "page": "about.html"
  },
  "permissions": [
    "dns",
    "menus",
    "storage",
    "tabs",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "contextMenus",
    "cookies",
    "notifications",
    "idle",
    "browserSettings"
  ],
  "short_name": "AdZero",
  "version": "23.210.4532.4",
  "web_accessible_resources": [
    "/web_accessible_resources/*"
  ]
}