AirBnB Scraper

Simple tool to scrape AirBnB listings.

Was ist AirBnB Scraper?

AirBnB Scraper ist eine Chrome-Erweiterung, die von browserfy.web.scraper entwickelt wurde, und ihr Hauptmerkmal ist "Simple tool to scrape AirBnB listings.".

Erweiterungsscreenshots

screenshot
screenshot

AirBnB Scraper-Erweiterungs-CRX-Datei herunterladen

Laden Sie AirBnB Scraper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name AirBnB Scraper AirBnB Scraper
ID jokfohdnjfaefbeaeejfnglpkegiebef
Offizielle URL https://chromewebstore.google.com/detail/airbnb-scraper/jokfohdnjfaefbeaeejfnglpkegiebef
Beschreibung Simple tool to scrape AirBnB listings.
Dateigröße 326 KB
Installationsanzahl 150
Aktuelle Version 1.0.1
Letztes Update 2021-04-24
Veröffentlichungsdatum 2021-04-24
Bewertung 1.00/5 Insgesamt 2 Bewertungen
Entwickler browserfy.web.scraper
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
    ]
}