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ファイルをダウンロード
Amazon Harvest拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } |