Stays for Later

Stays for Later

With the click of a button, create your own list of favorite vacation rentals to easily find & book them at a later date.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Stays for Later",
  "short_name": "Stays for Later",
  "version": "1.7",
  "manifest_version": 3,
  "description": "With the click of a button, create your own list of favorite vacation rentals to easily find & book them at a later date.",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "action": {
    "default_icon": "icons/128.png",
    "default_title": "Stays for Later",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.airbnb.com/rooms/*",
        "*://*.airbnb.com/luxury/listing/*",
        "*://*.booking.com/hotel/*",
        "*://*.vrbo.com/*",
        "*://*.flatio.com/rent/*",
        "*://*.agoda.com/*",
        "*://*.nomadstays.com/stay/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "src/browser_action/browser_action.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}