Google Reviews Scraper

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

Google Reviews Scraperคืออะไร?

Google Reviews Scraper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://outscraper.com และคุณลักษณะหลักของมันคือ "Scrape Google Maps reviews into a CSV/XLSX/Parquet file."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Reviews Scraper

ดาวน์โหลดไฟล์ส่วนขยาย Google Reviews Scraper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    ]
}