Travel Guide by VacationHomeRents

Travel Guide by VacationHomeRents

Display related COVID-19 restrictions, travel guide, and destination insights on Airbnb pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.1.2",
  "short_name": "Travel Guide",
  "name": "Travel Guide by VacationHomeRents",
  "description": "Display related COVID-19 restrictions, travel guide, and destination insights on Airbnb pages.",
  "browser_action": {
    "default_title": "Travel Guide by VacationHomeRents",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.airbnb.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}