AdShield

AdShield

AdShield is equipped with powerful ad block technology that minimizes distractions from annoying ads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "AdShield",
  "background": {
    "page": "bg.html"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/16.png",
      "19": "icons/19.png",
      "20": "icons/20.png",
      "32": "icons/32.png",
      "38": "icons/38.png",
      "40": "icons/40.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_name__"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "polyfill.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"
    }
  ],
  "default_locale": "en_US",
  "description": "__MSG_description__",
  "devtools_page": "devtools.html",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/detailed/48.png",
    "64": "icons/detailed/64.png",
    "128": "icons/detailed/128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "49.0",
  "name": "AdShield",
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "cookies",
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "storage",
    "unlimitedStorage",
    "notifications"
  ],
  "short_name": "__MSG_name__",
  "storage": {
    "managed_schema": "managed-storage-schema.json"
  },
  "version": "1.0.18.1109"
}