Amazon Harvest
Collects information about products from detail pages on Amazon. Collects: Title, Customer Review No., Price, ASIN, Rank, UPC.
Qu'est-ce que Amazon Harvest ?
Amazon Harvest est une extension Chrome développée par Petar Strainovic, et sa fonction principale est "Collects information about products from detail pages on Amazon. Collects: Title, Customer Review No., Price, ASIN, Rank, UPC.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Amazon Harvest
Téléchargez les fichiers d'extension Amazon Harvest au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | Amazon Harvest |
ID | aamemknciolgiibiifaplfacppgjjpkl |
URL Officiel | https://chromewebstore.google.com/detail/amazon-harvest/aamemknciolgiibiifaplfacppgjjpkl |
Description | Collects information about products from detail pages on Amazon. Collects: Title, Customer Review No., Price, ASIN, Rank, UPC. |
Taille du Fichier | 33.48 KB |
Nombre d'Installations | 851 |
Version Actuelle | 1.1.9 |
Dernière Mise à Jour | 2016-06-01 |
Date de Publication | 2016-06-01 |
Évaluation | 4.14/5 Total 7 Évaluations |
Développeur | Petar Strainovic |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |