AnyHide

AnyHide

Hide unwanted search results on Booking.com and other top travel websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AnyHide",
  "version": "0.1.1",
  "description": "Hide unwanted search results on Booking.com and other top travel websites.",
  "author": "",
  "icons": {
    "16": "icons/icon-circle-48.png",
    "48": "icons/icon-circle-48.png",
    "128": "icons/icon-circle-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.booking.com/*",
        "https://www.airbnb.com/*",
        "https://www.tripadvisor.com/*"
      ],
      "js": [
        "anyhide.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ]
}