Advertising Terminator

Advertising Terminator

Clear all the ads on the page: floating ads, shopping ads, malicious pop, tracking code.

Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "bg.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "include.preload.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "include.postload.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "zh_CN",
  "description": "__MSG_description__",
  "icons": {
    "48": "icons/abp-48.png",
    "128": "icons/abp-128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "18.0",
  "name": "__MSG_name__",
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "icons/abp-128.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_name__"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "unlimitedStorage",
    "notifications",
    "storage"
  ],
  "version": "3.4.2",
  "web_accessible_resources": [
    "block.html"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}