WhackAMole Ad-Blocker

WhackAMole Ad-Blocker

WhackAMole Ad-Blocker

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WhackAMole Ad-Blocker",
  "short_name": "WhackAMole",
  "description": "WhackAMole Ad-Blocker",
  "version": "3.13",
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "author": "Chris Laffra - [email protected]",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "jquery.js",
        "contentscript.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "service_worker.js"
  },
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "38": "cross.png"
    },
    "default_title": "Whack A Mole",
    "default_popup": "popup.html"
  },
  "content_security_policy": {}
}