Google Maps Scraper

Scrape local businesses from Google Maps into a CSV/XLSX/Parquet file.

Google Maps Scraper là gì?

Google Maps Scraper là một tiện ích mở rộng Chrome được phát triển bởi https://outscraper.com, và tính năng chính của nó là "Scrape local businesses from Google Maps into a CSV/XLSX/Parquet file.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Maps Scraper

Tải xuống các tệp mở rộng Google Maps Scraper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Google Maps Scraper extension allows you to extract local businesses from Google Maps. Export phones, emails, addresses and other information of millions of businesses placed on Google.

Marketers, researchers, and scientists are using the data from Google Places. But scraping Google Maps manually even for 25 companies is a hard task, therefore Outscrpaer is the quickest and the simplest way for professionals to export the data.

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

Data Dictionary
name - name of the place on Google Maps.
site - website of the place.
type - the type of the place under which it was found.
subtypes - all types of the place.
category - the main type of the place.
phone - place phone number.
full_address - full address of the place location.
borough - borough of the place location.
street - street of the place location.
city - city of the place location.
postal_code - postal code of the place location.
state - state of the place location.
us_state - state of the place location (will be removed in future versions).
country - country of the place location.
country_code - country code of the place location.
latitude - latitude of the place location.
longitude - longitude of the place location.
time_zone - timezone of the place location.
plus_code - location plus code (Open Location Code).
rating - rating of the place.
reviews - number of reviews
reviews_link - link to the place's reviews.
reviews_per_score - JSON object with reviews per score.
photos_count - number of photos from the place.
photo - image link of the place.
street_view - image link of the place street view.
working_hours - JSON object with working hours of the place.
working_hours_old_format - working hours of the place.
popular_times - popular time of the place (works only for some places).
business_status - current status of the business.
about - extra information about the place.
range - price range of the place.
posts - JSON object with posts from the place (works only for some places).
verified - indicates if the place was claimed (no longer supported).
owner_id - unique identifier of the place owner.
owner_title - title of the owner's profile page.
owner_link - link to owner profile on Google Maps.
reservation_links - link to make reservation.
booking_appointment_link - link to book appointment.
menu_link - link to menu.
order_links - link to place an order.
location_link - link to the place on Google Maps.
place_id - unique identifier of the place (Google might update it a couple of times per a year).
google_id - unique identifier of the place (Google might update it a couple of times per a year).
reviews_id - unique identifier of the places' reviews.

Additional data that might be added by applying Emails Scraper Enrichment (select this enrichment in UI or use the "extractContacts" parameter in API ).

domain - website domain (if exists).
email_1 - first email found from the website (if found).
email_2 - second email found from the website (if found).
email_3 - third email found from the website (if found).
facebook - link to the place facebook page (if found).
instagram - link to the place instagram page (if found).
twitter - link to the place twitter page (if found).
instagram - link to the place instagram page (if found).
linkedin - link to the place linkedin page (if found).
youtube - link to the place youtube page (if found).
phone_1 - first phone found from the website (if found).
phone_2 - second phone found from the website (if found).
phone_3 - third phone found from the website (if found).
title - title of the website (meta tag, if exists).
generator - the platform the website is built on (if found).
description - description of the website (meta tag, if exists).

More information: https://outscraper.com/google-maps-scraper/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Maps Scraper Google Maps Scraper
ID cmmdmdjbabkffohbclpiopcaapimocdd
URL Chính Thức https://chrome.google.com/webstore/detail/google-maps-scraper/cmmdmdjbabkffohbclpiopcaapimocdd
Mô tả Scrape local businesses from Google Maps into a CSV/XLSX/Parquet file.
Kích Thước Tệp 391 KB
Số Lần Cài Đặt 54
Phiên Bản Hiện Tại 0.0.6
Cập Nhật Lần Cuối 2022-01-17
Ngày Phát Hành 2022-01-13
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://outscraper.com
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://outscraper.com/google-maps-scraper/
URL Trang Trợ Giúp https://outscraper.com/contact-us/
URL Trang Chính Sách Bảo Mật https://outscraper.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Maps Scraper",
    "description": "Scrape local businesses from Google Maps into a CSV\/XLSX\/Parquet file.",
    "version": "0.0.6",
    "browser_action": {
        "default_title": "Google Maps 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"
        }
    ]
}