Amazon Harvest
Collects information about products from detail pages on Amazon. Collects: Title, Customer Review No., Price, ASIN, Rank, UPC.
Amazon Harvest란 무엇입니까?
Amazon Harvest은(는) Petar Strainovic에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Collects information about products from detail pages on Amazon. Collects: Title, Customer Review No., Price, ASIN, Rank, UPC."입니다.
확장 프로그램 스크린샷
Amazon Harvest 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
When you open a page with a particular product click on the extension icon, data will be stored in a table row, after that click on copy and your information is ready to be pasted in a spreadsheet. Working on smile.amazon.com, www.amazon.com, amazon.ca for now. With version 1.1.6 adjusted to European websites. Currently supporting amazon.it, amazon.fr, amazon.co.uk, amazon.es. If you find a bug please report it. If you want to collect all the sellers and their prices for a specific product you can try my other extension "Amazon Harvest - Collect Sellers" If you want to support me, or you have suggestions or need to make the extension suitable for you, feel free to contact me at [email protected] Looking forward to your comments!
확장 프로그램 기본 정보
이름 | Amazon Harvest |
ID | aamemknciolgiibiifaplfacppgjjpkl |
공식 URL | https://chromewebstore.google.com/detail/amazon-harvest/aamemknciolgiibiifaplfacppgjjpkl |
설명 | Collects information about products from detail pages on Amazon. Collects: Title, Customer Review No., Price, ASIN, Rank, UPC. |
파일 크기 | 33.48 KB |
설치 횟수 | 851 |
현재 버전 | 1.1.9 |
최근 업데이트 | 2016-06-01 |
출시 날짜 | 2016-06-01 |
평점 | 4.14/5 총 7 개의 평점 |
개발자 | Petar Strainovic |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazon Harvest", "description": "Collects information about products from detail pages on Amazon. Collects: Title, Customer Review No., Price, ASIN, Rank, UPC.", "version": "1.1.9", "page_action": { "default_title": "Harvest", "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.amazon.com\/*", "https:\/\/www.amazon.com\/*", "http:\/\/smile.amazon.com\/*", "https:\/\/smile.amazon.com\/*", "https:\/\/www.amazon.ca\/*", "https:\/\/www.amazon.co.uk\/*", "http:\/\/www.amazon.it\/*", "https:\/\/www.amazon.it\/*", "https:\/\/www.amazon.fr\/*", "https:\/\/www.amazon.es\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "permissions": [ "activeTab", "clipboardWrite" ] } |