AirBnB Scraper
Simple tool to scrape AirBnB listings.
AirBnB Scraperคืออะไร?
AirBnB Scraper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย browserfy.web.scraper และคุณลักษณะหลักของมันคือ "Simple tool to scrape AirBnB listings."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AirBnB Scraper
ดาวน์โหลดไฟล์ส่วนขยาย AirBnB Scraper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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\/*" ] } |