Simple Ad-Blocker

Simple Ad-Blocker

Remove all Ads and reclaim your internet!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Simple Ad-Blocker",
  "short_name": "Offline adblocker",
  "description": "Remove all Ads and reclaim your internet!",
  "version": "1.3.0.6",
  "manifest_version": 3,
  "author": "Prince Hector",
  "icons": {
    "16": "res/16.png",
    "32": "res/32.png",
    "48": "res/48.png",
    "128": "res/128.png"
  },
  "action": {
    "default_icon": {
      "38": "res/48.png"
    },
    "default_title": "Simple website advert Remover",
    "default_popup": "./adCard/card.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery.js",
        "contentscript.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "./donate-honor/index.html",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}