AirBnB Scraper

Simple tool to scrape AirBnB listings.

Cos'è AirBnB Scraper?

AirBnB Scraper è un'estensione di Chrome sviluppata da browserfy.web.scraper, e la sua funzione principale è "Simple tool to scrape AirBnB listings.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione AirBnB Scraper

Scarica i file di estensione AirBnB Scraper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome AirBnB Scraper AirBnB Scraper
ID jokfohdnjfaefbeaeejfnglpkegiebef
URL Ufficiale https://chromewebstore.google.com/detail/airbnb-scraper/jokfohdnjfaefbeaeejfnglpkegiebef
Descrizione Simple tool to scrape AirBnB listings.
Dimensione del File 326 KB
Conteggio Installazioni 150
Versione Corrente 1.0.1
Ultimo Aggiornamento 2021-04-24
Data di Pubblicazione 2021-04-24
Valutazione 1.00/5 Totale 2 Valutazioni
Sviluppatore browserfy.web.scraper
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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\/*"
    ]
}