AirBnB Scraper

Simple tool to scrape AirBnB listings.

Vad är AirBnB Scraper?

AirBnB Scraper är en Chrome-tillägg utvecklad av browserfy.web.scraper, och dess huvudfunktion är "Simple tool to scrape AirBnB listings.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner AirBnB Scraper-förlängningens CRX-fil

Ladda ner AirBnB Scraper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn AirBnB Scraper AirBnB Scraper
ID jokfohdnjfaefbeaeejfnglpkegiebef
Officiell webbadress https://chromewebstore.google.com/detail/airbnb-scraper/jokfohdnjfaefbeaeejfnglpkegiebef
Beskrivning Simple tool to scrape AirBnB listings.
Filstorlek 326 KB
Antal Installationer 150
Aktuell Version 1.0.1
Senast Uppdaterad 2021-04-24
Publiceringsdatum 2021-04-24
Betyg 1.00/5 Totalt 2 Betyg
Utvecklare browserfy.web.scraper
E-post [email protected]
Betalningssätt free
Stödda Språk 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\/*"
    ]
}