AirBnB Scraper

Simple tool to scrape AirBnB listings.

Wat is AirBnB Scraper?

AirBnB Scraper is een Chrome-extensie ontwikkeld door browserfy.web.scraper, en de belangrijkste functie is "Simple tool to scrape AirBnB listings.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie AirBnB Scraper

Download AirBnB Scraper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam AirBnB Scraper AirBnB Scraper
ID jokfohdnjfaefbeaeejfnglpkegiebef
Officiële URL https://chromewebstore.google.com/detail/airbnb-scraper/jokfohdnjfaefbeaeejfnglpkegiebef
Beschrijving Simple tool to scrape AirBnB listings.
Bestandsgrootte 326 KB
Aantal Installaties 150
Huidige Versie 1.0.1
Laatst Bijgewerkt 2021-04-24
Publicatiedatum 2021-04-24
Beoordeling 1.00/5 Totaal 2 Beoordelingen
Ontwikkelaar browserfy.web.scraper
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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\/*"
    ]
}