SPEAR-AdBlocker

SPEAR-AdBlocker

Block annoying ads with SPEAR-AdBlocker!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SPEAR-AdBlocker",
  "version": "1.0.0",
  "icons": {
    "16": "assets/icon-16.png",
    "32": "assets/icon-32.png",
    "48": "assets/icon-48.png"
  },
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "options_page": "pages/options/index.html",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "activeTab",
    "<all_urls>",
    "unlimitedStorage"
  ],
  "content_scripts": [
    {
      "match_about_blank": true,
      "all_frames": true,
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup/index.html",
    "default_title": "SPEAR-AdBlocker Popup"
  },
  "web_accessible_resources": [
    "assets/*",
    "pages/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}