Amazon Review Scraper - Export to CSV

Scrape Amazon reviews and export them to CSV with AmaReviews.

Amazon Review Scraper - Export to CSV란 무엇입니까?

Amazon Review Scraper - Export to CSV은(는) https://turtletasks.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Scrape Amazon reviews and export them to CSV with AmaReviews."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Amazon Review Scraper - Export to CSV 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        What Amazon Review Scraper chrome extension do?
✓ Extracts Amazon product reviews and saves them on your computer.
✓ Export your extracted reviews to CSV. Ready for Excel and Google sheets.
✓ Review your extracted product reviews right on the browser. You can search reviews, sort, and show/hide columns.
✓ Scrape reviews from any review page. Start from the beginning, middle, last page, and anywhere between. You can include any criteria like top reviews, most recent, number of stars etc as well.
✓ Perform separate scrapes and append them into one storage or clear them to start over.
✓ Stop extracting reviews at any time.
✓ Set random delays when visiting each page to emulate human behavior. You can change the range yourself.
✓ Save your Amazon review dataset on your computer. Nothing is sent or shared to us.

Amazon Review Scraper tool emulates human behavior. It visits each page to scrape reviews as if you're doing it yourself.


How to automatically extract Amazon reviews? 
- Visit a product page OR the products review page
- Click "Start extracting"
- It will start scraping each review and the following pages automatically. You can stop it at anytime.
- Reviews will save on your local computer. Nothing is shared and completely private.

The goal is to make the amazon review scraper easy to use.


Features
- Start and stop extracting on any review page. 
- Human emulation by using random delays. You can change this yourself.
- View all your scraped reviews on a separate browser page.
- Export your Amazon reviews in Excel CSV.


What data does AmaReviews provide?
- reviewID - Unique ID given to the review 
- name - Name of the person writing the review
- date - When the person wrote the review
- verifiedPurchase - Verified if the reviewer purchased the product
- rating - Rate given on the product
- helpful - Number of people who found the review to be helpful
- title -Title of the review
- review - The review itself
- profile - Reviewers profile link
- country - Reviewers country
- reviewLink - Direct link to the review
- reviewImage - Link to any images the reviewer has posted


Free & Paid
This is a free Amazon review scraper chrome extension. Extracts up to 35 reviews at a time.

A paid plan will scrape unlimited reviews, pages, and export. Saves all your scraped reviews. 
- No confusing payment. No cost for heavy usage. No billing systems with restrictions or limits. 


Privacy 
https://turtletasks.com/privacy                    

확장 프로그램 기본 정보

이름 Amazon Review Scraper - Export to CSV Amazon Review Scraper - Export to CSV
ID fmdnlcggjjlfimafoocabeghllidbopg
공식 URL https://chromewebstore.google.com/detail/amazon-review-scraper-exp/fmdnlcggjjlfimafoocabeghllidbopg
설명 Scrape Amazon reviews and export them to CSV with AmaReviews.
파일 크기 96.08 KB
설치 횟수 453
현재 버전 1.0.1
최근 업데이트 2022-02-05
출시 날짜 2022-02-03
개발자 https://turtletasks.com
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://turtletasks.com/#contact
개인정보 보호 정책 페이지 URL https://turtletasks.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Amazon Review Scraper - Export to CSV",
    "description": "Scrape Amazon reviews and export them to CSV with AmaReviews.",
    "version": "1.0.1",
    "icons": {
        "16": "assets\/logo\/logo-16.png",
        "48": "assets\/logo\/logo-48.png",
        "128": "assets\/logo\/logo-128.png"
    },
    "options_page": "popup\/export.html",
    "action": {
        "default_title": "Amazon Review Scraper | AmaReviews",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "service_worker": "popup\/js\/background.js"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/js\/page.js",
                "assets\/js\/jquery.js",
                "assets\/js\/extract.js",
                "assets\/js\/listing.js",
                "assets\/js\/user.js"
            ],
            "matches": [
                "https:\/\/www.amazon.com\/*",
                "https:\/\/www.amazon.co.uk\/*",
                "https:\/\/turtletasks.com\/*",
                "https:\/\/www.turtletasks.com\/*"
            ]
        }
    ]
}