AirBnB Scraper
Simple tool to scrape AirBnB listings.
What is AirBnB Scraper?
AirBnB Scraper is a Chrome extension developed by browserfy.web.scraper, and its main feature is "Simple tool to scrape AirBnB listings.".
Extension Screenshots
Download AirBnB Scraper Extension CRX File
Download AirBnB Scraper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
If you are interested in saving AirBnB listings while browsing their map, this is the right tool for you. By simply moving around the map, our plugin will collect all listings you encountered and make them downloadable to you via a CSV file. We are still trying to improve the plugin. Please let us know if you need some additional fields or functionality.
Extension Basic Information
Name | AirBnB Scraper |
ID | jokfohdnjfaefbeaeejfnglpkegiebef |
Official URL | https://chromewebstore.google.com/detail/airbnb-scraper/jokfohdnjfaefbeaeejfnglpkegiebef |
Description | Simple tool to scrape AirBnB listings. |
File Size | 326 KB |
Installation Count | 150 |
Current Version | 1.0.1 |
Last Updated | 2021-04-24 |
Publish Date | 2021-04-24 |
Rating | 1.00/5 Total 2 Ratings |
Developer | browserfy.web.scraper |
[email protected] | |
Payment Type | free |
Supported Languages | en |
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\/*" ] } |