Stop Ads - Ultimate Ad Blocker

Stop Ads - Ultimate Ad Blocker

Blocks all annoying ads, speeds up your browsing and protects your privacy.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "short_name": "__MSG_short_name__",
  "description": "__MSG_description_chrome__",
  "version": "2.8.11",
  "minimum_chrome_version": "28.0",
  "default_locale": "en",
  "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"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/abp-19.png",
      "38": "icons/abp-38.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_short_name__"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "ext/common.js",
        "ext/content.js",
        "include.preload.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "include.postload.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_page": "options.html",
  "storage": {
    "managed_schema": "managed-storage-schema.json"
  },
  "web_accessible_resources": [
    "block.html"
  ],
  "permissions": [
    "tabs",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "storage",
    "unlimitedStorage"
  ]
}