Amazon Reviews Downloader
Download Amazon Product Reviews automatically
Amazon Reviews Downloader란 무엇입니까?
Amazon Reviews Downloader은(는) 3HS에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download Amazon Product Reviews automatically"입니다.
확장 프로그램 스크린샷
Amazon Reviews Downloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
ID | odgffkocgedigcjopmjgobenngomikkd |
공식 URL | 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 } |