AirBnB Scraper
Simple tool to scrape AirBnB listings.
AirBnB Scraper क्या है?
AirBnB Scraper browserfy.web.scraper द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple tool to scrape AirBnB listings."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AirBnB Scraper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } |