Google Reviews Scraper

Scrape Google Maps reviews into a CSV/XLSX/Parquet file.

Google Reviews Scraper란 무엇입니까?

Google Reviews Scraper은(는) https://outscraper.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Scrape Google Maps reviews into a CSV/XLSX/Parquet file."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Google Reviews Scraper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.                    

확장 프로그램 기본 정보

이름 Google Reviews Scraper Google Reviews Scraper
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"
        }
    ]
}