Amazon Reviews Downloader

Download Amazon Product Reviews automatically

什麼是Amazon Reviews Downloader?

Amazon Reviews Downloader是由3HS開發的Chrome擴展程式,該擴展的主要功能是“Download Amazon Product Reviews automatically”。

擴展截圖

screenshot
screenshot
screenshot

下載Amazon Reviews Downloader擴展crx文件

下載Amazon Reviews Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Would you like to get the Amazon product reviews data for analyzing? This extension will help you with few clicks!

🆓 This extension will always be Free ! If you like it just buy me a coffee 🍻.

* Features:

1. Download Amazon product reviews as CSV format with fields (full):
Reviewer, Rating, Review Location, Review Date, Review Title, Review Text, Verified Purchase (Yes/No), Number of Helpful, Review URL

2. Select Criteria: Sort By, Filter By, Stars

3. Select the Displayed Fields in CSV.

* How it works:

1. Install the extension.
2. Open an Amazon product page.
3. Open the extension and start downloading!

* Support for almost Amazon sites.                    

擴展基本資訊

名稱 Amazon Reviews Downloader Amazon Reviews Downloader
ID odgffkocgedigcjopmjgobenngomikkd
官方網址 https://chromewebstore.google.com/detail/amazon-reviews-downloader/odgffkocgedigcjopmjgobenngomikkd
簡介 Download Amazon Product Reviews automatically
檔案大小 96.66 KB
安裝次數 1,049
目前版本 1.4
更新時間 2023-12-14
上架時間 2020-03-22
評分 3.29/5 共 7 次評分
開發者 3HS
電子郵箱 [email protected]
付費類型 in_app
擴展官網 http://theamzreviews.com:8080/
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Amazon Reviews Downloader",
    "description": "Download Amazon Product Reviews automatically",
    "version": "1.4",
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';",
        "sandboxed_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/*",
                "https:\/\/www.amazon.co.uk\/*",
                "https:\/\/www.amazon.com.au\/*",
                "https:\/\/www.amazon.de\/*",
                "https:\/\/www.amazon.ca\/*",
                "https:\/\/www.amazon.fr\/*",
                "https:\/\/www.amazon.it\/*",
                "https:\/\/www.amazon.es\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "libs\/jquery.min.js",
                "libs\/papaparse.min.js",
                "libs\/bootstrap.min.js",
                "src\/content_script.js"
            ]
        }
    ],
    "manifest_version": 3
}