AirBnB Scraper

Simple tool to scrape AirBnB listings.

Hvad er AirBnB Scraper?

AirBnB Scraper er en Chrome-udvidelse udviklet af browserfy.web.scraper, og dens hovedfunktion er "Simple tool to scrape AirBnB listings.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download AirBnB Scraper-udvidelses-CRX-fil

Download AirBnB Scraper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn AirBnB Scraper AirBnB Scraper
ID jokfohdnjfaefbeaeejfnglpkegiebef
Officiel URL https://chromewebstore.google.com/detail/airbnb-scraper/jokfohdnjfaefbeaeejfnglpkegiebef
Beskrivelse Simple tool to scrape AirBnB listings.
Filstørrelse 326 KB
Antal Installationer 150
Nuværende Version 1.0.1
Senest Opdateret 2021-04-24
Udgivelsesdato 2021-04-24
Bedømmelse 1.00/5 Samlet 2 Bedømmelser
Udvikler browserfy.web.scraper
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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\/*"
    ]
}