Free AdBlocker Original

Free AdBlocker Original

Block annoying and intrusive ads while browsing your favorite websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": true,
    "scripts": [
      "polyfill.js",
      "ext/common.js",
      "ext/background.js",
      "lib/compat.js",
      "lib/publicSuffixList.js",
      "lib/easyadblock.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Free AdBlocker"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "polyfill.js",
        "ext/common.js",
        "ext/content.js",
        "preload.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "postload.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "default_locale": "en_US",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "49.0",
  "name": "__MSG_appName__",
  "homepage_url": "https://www.freeablocker.com",
  "permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "storage",
    "unlimitedStorage"
  ],
  "storage": {
    "managed_schema": "managed-storage-schema.json"
  },
  "version": "1.2"
}