AdBlock Unicorn

AdBlock Unicorn

The cutest Ad blocker, blocks ads from more than 50'000 sources.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AdBlock Unicorn",
  "version": "2.0.2.0",
  "description": "The cutest Ad blocker, blocks ads from more than 50'000 sources.",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "https://*/*",
    "storage"
  ],
  "icons": {
    "128": "128.png"
  },
  "web_accessible_resources": [
    "128.png"
  ],
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "matches": [
        "https://adblock-unicorn.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "validation.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "menu.html"
  },
  "manifest_version": 2
}