Anti Adblock Detector

Anti Adblock Detector

Bypasses adblock detectors to allow you to continue using adblockers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Anti Adblock Detector",
  "version": "0.2.5",
  "description": "Bypasses adblock detectors to allow you to continue using adblockers",
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Anti Adblock Detector",
    "default_icon": {
      "16": "images/adblockdetector16.png",
      "32": "images/adblockdetector32.png",
      "48": "images/adblockdetector48.png",
      "128": "images/adblockdetector128.png"
    }
  },
  "icons": {
    "16": "images/adblockdetector16.png",
    "32": "images/adblockdetector32.png",
    "48": "images/adblockdetector48.png",
    "128": "images/adblockdetector128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "manifest_version": 2
}