Comodo AdBlocker

Comodo AdBlocker

Based on the same open source codebase used by over 50 million people, improved by blocking malware, tracking & ALL display ads

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "minimum_chrome_version": "28.0",
  "name": "__MSG_name__",
  "description": "__MSG_description_chrome__",
  "short_name": "__MSG_name__",
  "options_page": "options.html",
  "version": "1.0.8",
  "default_locale": "en_US",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "storage",
    "unlimitedStorage",
    "notifications"
  ],
  "storage": {
    "managed_schema": "managed-storage-schema.json"
  },
  "web_accessible_resources": [
    "block.html"
  ],
  "background": {
    "scripts": [
      "ext/common.js",
      "ext/background.js",
      "lib/compat.js",
      "lib/info.js",
      "lib/adblockplus.js",
      "lib/punycode.js",
      "lib/publicSuffixList.js",
      "lib/sha1.js",
      "lib/jsbn.js",
      "lib/rsa.js",
      "webrequest.js",
      "messageResponder.js",
      "popupBlocker.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/abp-19.png",
      "38": "icons/abp-38.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_name__"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "ext/common.js",
        "ext/content.js",
        "include.preload.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "include.postload.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icons/abp-16.png",
    "32": "icons/abp-32.png",
    "48": "icons/detailed/abp-48.png",
    "64": "icons/detailed/abp-64.png",
    "128": "icons/detailed/abp-128.png"
  }
}