Compare Airbnb side-to-side

Compare Airbnb side-to-side

Easily compare Airbnb listings (price, fees, amenities, rules and more) with a side-to-side table. No more switching between tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Compare Airbnb side-to-side",
  "description": "Easily compare Airbnb listings (price, fees, amenities, rules and more) with a side-to-side table. No more switching between tabs.",
  "version": "0.9.5",
  "permissions": [
    "storage",
    "tabs"
  ],
  "action": {
    "default_icon": {
      "16": "icons/16.png",
      "19": "icons/19.png",
      "32": "icons/32.png",
      "38": "icons/38.png"
    },
    "default_popup": "src/entries/popup/index.html"
  },
  "background": {
    "service_worker": "serviceWorker.js",
    "type": "module"
  },
  "options_ui": {
    "page": "src/entries/options/index.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "js": [
        "src/entries/contentScript/main.js"
      ],
      "matches": [
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "airbnb.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "assets/src/entries/contentScript/main-2a584aa7.js",
        "assets/browser-polyfill-c7358dbc.js",
        "assets/_plugin-vue_export-helper-53a5e5eb.js"
      ],
      "matches": [
        "https://*/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "16": "icons/16.png",
    "19": "icons/19.png",
    "32": "icons/32.png",
    "38": "icons/38.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "96": "icons/96.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  }
}