Ads Killer

Ads Killer

Блокирует баннеры, текстовые объявления, видеорекламу, всплывающие pop-up окна и рекламные системы слежения.

Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "ext/common.js",
      "ext/background.js",
      "lib/compat.js",
      "lib/adskiller.js",
      "lib/punycode.js",
      "lib/publicSuffixList.js",
      "lib/sha1.js",
      "lib/jsbn.js",
      "lib/rsa.js",
      "lib/zepto.min.js",
      "lib/adskillerLib.js",
      "modules/utils.js",
      "webrequest.js",
      "messageResponder.js",
      "popupBlocker.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "ext/common.js",
        "ext/content.js",
        "cssProperties.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"
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "default_locale": "ru",
  "description": "__MSG_description__",
  "devtools_page": "devtools.html",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAq8/A04b3Iy1yVV43TPpE5bGdM46u4iS3/BaHAMfe8k3S52WfWK+9MyC6WuXfr4GaDP5k7Ei+D4CGOMdO+ZWiVbCzP/gGgGFx1VS/YOOa4oaVOgzSqIV/83xh9S2hq1eWEz58pMuoUtfH0K28d0IxtEwayHTg1UP4+GMiUfFhPMbepUjV4LpR4BKA6Rvgn0D10bN3Tlp/4v6s8OOoCXz+tfbonhJVwnoLRiuS3XkMvS5L0V1yKjsjhzh6T12w7vqTLYOtposlXS370RDK48dZka3nUvTAmOenSdaHTkZNuY4MIqsaKNIs6n+PaZ5bdwDByywytKM7RuDoqxxcDGzzOwIDAQAB",
  "manifest_version": 2,
  "name": "Ads Killer",
  "options_page": "options/options.html",
  "page_action": {
    "default_icon": "icons/icon19-whitelisted.png",
    "default_popup": "popup.html",
    "default_title": "Ads Killer"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "storage",
    "unlimitedStorage",
    "notifications",
    "management"
  ],
  "short_name": "Ads Killer",
  "storage": {
    "managed_schema": "managed-storage-schema.json"
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.99.70",
  "web_accessible_resources": [
    "block.html",
    "select.html"
  ]
}