Ethical AdBlock — Ad Blocker

Ethical AdBlock — Ad Blocker

Ethical Adblock is the first undetectable adblocker for all websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ethical AdBlock — Ad Blocker",
  "version": "1.2",
  "description": "Ethical Adblock is the first undetectable adblocker for all websites.",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "http://*/",
    "https://*/"
  ],
  "background": {
    "scripts": [
      "blocked_domains.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "adskip.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "icons": {
    "128": "Logo_EthicalBlocker.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "manifest_version": 2
}