AirBnB Scraper
Simple tool to scrape AirBnB listings.
Qu'est-ce que AirBnB Scraper ?
AirBnB Scraper est une extension Chrome développée par browserfy.web.scraper, et sa fonction principale est "Simple tool to scrape AirBnB listings.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension AirBnB Scraper
Téléchargez les fichiers d'extension AirBnB Scraper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | AirBnB Scraper |
ID | jokfohdnjfaefbeaeejfnglpkegiebef |
URL Officiel | https://chromewebstore.google.com/detail/airbnb-scraper/jokfohdnjfaefbeaeejfnglpkegiebef |
Description | Simple tool to scrape AirBnB listings. |
Taille du Fichier | 326 KB |
Nombre d'Installations | 150 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2021-04-24 |
Date de Publication | 2021-04-24 |
Évaluation | 1.00/5 Total 2 Évaluations |
Développeur | browserfy.web.scraper |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } |