AirBnB Scraper

Simple tool to scrape AirBnB listings.

O que é AirBnB Scraper?

AirBnB Scraper é uma extensão do Chrome desenvolvida por browserfy.web.scraper, e sua principal característica é "Simple tool to scrape AirBnB listings.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão AirBnB Scraper

Baixe arquivos de extensão AirBnB Scraper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome AirBnB Scraper AirBnB Scraper
ID jokfohdnjfaefbeaeejfnglpkegiebef
URL Oficial https://chromewebstore.google.com/detail/airbnb-scraper/jokfohdnjfaefbeaeejfnglpkegiebef
Descrição Simple tool to scrape AirBnB listings.
Tamanho do Arquivo 326 KB
Contagem de Instalações 150
Versão Atual 1.0.1
Última Atualização 2021-04-24
Data de Publicação 2021-04-24
Classificação 1.00/5 Total de 2 Avaliações
Desenvolvedor browserfy.web.scraper
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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\/*"
    ]
}