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 |
Eメール | [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\/*" ] } |