CrystalBlocker

CrystalBlocker

CrystalBlocker will help you to easily get rid of annoying ads and you can use it just in one click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "1.0.1",
  "name": "CrystalBlocker",
  "description": "__MSG_description__",
  "default_locale": "en",
  "icons": {
    "16": "assets/icons/active/icon_16.png",
    "32": "assets/icons/active/icon_32.png",
    "64": "assets/icons/active/icon_64.png",
    "128": "assets/icons/active/icon_128.png"
  },
  "browser_action": {
    "default_title": "CrystalBlocker",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icons/active/icon_16.png",
      "24": "assets/icons/active/icon_24.png",
      "32": "assets/icons/active/icon_32.png"
    }
  },
  "background": {
    "scripts": [
      "./adguard/adguard-api.js",
      "./background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "./adguard/adguard-content.js",
        "./content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "match_about_blank": true,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "http://*/*",
    "https://*/*",
    "ws://*/*",
    "wss://*/*",
    "storage",
    "tabs",
    "unlimitedStorage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{6db2b99f-bfe4-4843-9319-e6f30457f689}"
    }
  }
}