No Stress Booking

No Stress Booking

Hides all the red alerts and stressful messages from your favourite booking site

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "No Stress Booking",
  "version": "0.2.3",
  "description": "Hides all the red alerts and stressful messages from your favourite booking site",
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.booking.com/*",
        "https://*.booking.kayak.com/*",
        "https://*.onetravel.com/*",
        "https://*.cheapoair.com/*",
        "https://*.viagogo.com/*",
        "https://*.hotels.com/*",
        "https://*.agoda.com/*",
        "https://*.rentalcars.com/*",
        "https://*.expedia.com/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "media/*.png"
  ]
}