Google Reviews Scraper
Scrape Google Maps reviews into a CSV/XLSX/Parquet file.
Google Reviews Scraper क्या है?
Google Reviews Scraper https://outscraper.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Scrape Google Maps reviews into a CSV/XLSX/Parquet file."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Reviews Scraper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Scrape any amount of reviews from Google Maps local businesses into a CSV/XLSX/Parquet file. Google Maps Reviews Scraper extension allows you to extract any amount of reviews. from any business. There is a Free Tier that you can use each month for each type of scraping that will be sufficient to get started. To learn more about Outscraper, please visit https://outscraper.com Reviews Data Dictionary name - name of the place on Google Maps. google_id - unique identifier of the place. location_link - link to the place. reviews_link - link to the place reviews. reviews_per_score - JSON object with scores and the number of reviews per each score. rating - rating of the review. review_id - unique identifier of the review. author_link - link to author's profile on Google Maps. author_title - title of the author's profile page. author_id - unique identifier of the author. author_image - image link from the author's profile page. review_text - text of the review (if exists). review_img_url - image link from the review (if exists). owner_answer - text of the owner replay (if exists). owner_answer_timestamp - timestamp value when owner replied (if exists). owner_answer_timestamp_datetime_utc - datetime value when owner replied (if exists). review_link - link to the review. review_rating - rating of the review. review_timestamp - timestamp value when review created. review_datetime_utc - datetime value when review created. review_likes - amount of the review's likes. reviews_id - unique identifier of the place's reviews.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | pbmaojdafgckipdfdkfjiokhjkelbida |
आधिकारिक URL | https://chrome.google.com/webstore/detail/google-reviews-scraper/pbmaojdafgckipdfdkfjiokhjkelbida |
विवरण | Scrape Google Maps reviews into a CSV/XLSX/Parquet file. |
फ़ाइल का आकार | 485 KB |
स्थापना संख्या | 127 |
वर्तमान संस्करण | 0.0.2 |
अंतिम अपडेट | 2022-01-16 |
प्रकाशन तिथि | 2022-01-13 |
रेटिंग | 1.67/5 कुल 6 रेटिंग्स |
डेवलपर | https://outscraper.com |
ईमेल | [email protected] |
भुगतान के प्रकार | in_app |
एक्सटेंशन वेबसाइट | https://outscraper.com/google-maps-reviews-scraper/ |
सहायता पृष्ठ URL | https://outscraper.com/contact-us/ |
गोपनीयता नीति पृष्ठ URL | https://outscraper.com/privacy-policy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Reviews Scraper", "description": "Scrape Google Maps reviews into a CSV\/XLSX\/Parquet file.", "version": "0.0.2", "browser_action": { "default_title": "Google Reviews Scraper", "default_popup": "index.html" }, "homepage_url": "https:\/\/outscraper.com", "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png" }, "permissions": [ "https:\/\/*.google.com\/*", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content_script.js" ], "matches": [ "https:\/\/*.google.com\/maps\/*" ], "run_at": "document_idle" } ] } |