AirBnB Scraper

AirBnB Scraper

Simple tool to scrape AirBnB listings.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AirBnB Scraper",
  "description": "Simple tool to scrape AirBnB listings.",
  "version": "1.0.1",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "AirBnB Scraper"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "./static/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.airbnb.com/*"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "activeTab",
    "downloads",
    "https://www.airbnb.com/*"
  ]
}