Hide That!

Hide That!

This extension can hide or remove selected elements on a page. Useful for removing invasive adverts, banners and overlays.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Hide That!",
  "description": "This extension can hide or remove selected elements on a page. Useful for removing invasive adverts, banners and overlays.",
  "version": "3.7.0",
  "icons": {
    "16": "HideThatIcon_16x16.png",
    "32": "HideThatIcon_32x32.png",
    "48": "HideThatIcon_48x48.png",
    "128": "HideThatIcon_128x128.png"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/jquery-3.6.1.min.js",
        "content.js",
        "common.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_icon": "HideThatIcon_16x16.png",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "permissions": [
    "contextMenus",
    "tabs",
    "storage",
    "webNavigation"
  ]
}