AirBnB Scraper

Simple tool to scrape AirBnB listings.

ما هو AirBnB Scraper؟

AirBnB Scraper هو إضافة Chrome تم تطويرها بواسطة browserfy.web.scraper، والميزة الرئيسية لها هي "Simple tool to scrape AirBnB listings.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة AirBnB Scraper

قم بتنزيل ملفات الامتداد AirBnB Scraper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم AirBnB Scraper AirBnB Scraper
ID jokfohdnjfaefbeaeejfnglpkegiebef
عنوان URL الرسمي https://chromewebstore.google.com/detail/airbnb-scraper/jokfohdnjfaefbeaeejfnglpkegiebef
الوصف Simple tool to scrape AirBnB listings.
حجم الملف 326 KB
عدد التثبيتات 150
النسخة الحالية 1.0.1
آخر تحديث 2021-04-24
تاريخ النشر 2021-04-24
تقييم 1.00/5 مجموع تقييمات 2
المطور browserfy.web.scraper
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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\/*"
    ]
}