Amazon Review Scraper
Scrape Amazon reviews, ratings with this extension.
Amazon Review Scraper란 무엇입니까?
Amazon Review Scraper은(는) sarathisahoo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Scrape Amazon reviews, ratings with this extension."입니다.
확장 프로그램 스크린샷
Amazon Review Scraper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
With this extension you can scrape reviews and ratings of any amazon product within few seconds. Go to Amazon website, Go to any product page. Then right click on page and click "Scrape Reviews from this product" option. It will extract all reviews and ratings of the product and save it as a CSV excel file.
확장 프로그램 기본 정보
이름 | Amazon Review Scraper |
ID | kpmpdlljfabhiffaoamleakiblkbmmle |
공식 URL | https://chromewebstore.google.com/detail/amazon-review-scraper/kpmpdlljfabhiffaoamleakiblkbmmle |
설명 | Scrape Amazon reviews, ratings with this extension. |
파일 크기 | 138 KB |
설치 횟수 | 333 |
현재 버전 | 1.1.4 |
최근 업데이트 | 2020-09-06 |
출시 날짜 | 2019-07-25 |
평점 | 3.25/5 총 4 개의 평점 |
개발자 | sarathisahoo |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://www.privacypolicies.com/live/6a5bf36b-a38f-4aa4-b7e6-dbc18ab164ff |
지원되는 언어 | en |
manifest.json | |
{ "background": { "persistent": true, "scripts": [ "js\/csv.js", "js\/async.min.js", "src\/bg\/background.js" ] }, "content_scripts": [ { "js": [ "js\/jquery\/jquery.min.js", "js\/async.min.js", "js\/jquery.query-object.js", "src\/inject\/inject.js" ], "matches": [ "*:\/\/*.amazon.com\/*", "*:\/\/*.amazon.co.uk\/*", "*:\/\/*.amazon.com.au\/*", "*:\/\/*.amazon.ca\/*", "*:\/\/*.amazon.in\/*", "*:\/\/*.amazon.de\/*", "*:\/\/*.amazon.fr\/*", "*:\/\/*.amazon.it\/*", "*:\/\/*.amazon.es\/*", "file:\/\/\/*" ] } ], "browser_action": { "default_icon": "icons\/icon.png" }, "default_locale": "en", "description": "Scrape Amazon reviews, ratings with this extension.", "icons": { "128": "icons\/icon.png" }, "manifest_version": 2, "name": "Amazon Review Scraper", "permissions": [ "downloads", "contextMenus", "*:\/\/*.amazon.com\/*", "*:\/\/*.amazon.ca\/*", "*:\/\/*.amazon.in\/*", "*:\/\/*.amazon.co.uk\/*", "*:\/\/*.amazon.com.au\/*", "*:\/\/*.amazon.de\/*", "*:\/\/*.amazon.fr\/*", "*:\/\/*.amazon.it\/*", "*:\/\/*.amazon.es\/*" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.1.4" } |