AirBnB Scraper
Simple tool to scrape AirBnB listings.
什么是AirBnB Scraper?
AirBnB Scraper是由browserfy.web.scraper开发的Chrome扩展程序,该扩展的主要功能是“Simple tool to scrape AirBnB listings.”。
扩展截图
下载AirBnB Scraper扩展crx文件
下载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\/*" ] } |