Amazon Reviews Scraper
This extension will help scrape reviews of Amazon products.
Τι είναι το Amazon Reviews Scraper;
Το Amazon Reviews Scraper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον EverdayExtensions, και η κύρια λειτουργία του είναι "This extension will help scrape reviews of Amazon products.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Amazon Reviews Scraper
Λήψη αρχείων επέκτασης Amazon Reviews Scraper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension will scrape reviews for any Amazon product of your choice by simply copying the URL and pressing submit. Use reviews to organize and research what people are saying about your product or what people are saying about your competitors product in one place. You also have the ability to research existing products and see how they can be improved. This tool makes it very easy for you to do that.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Amazon Reviews Scraper |
ID | jncfccofhdpofdddbkacpnbhlfnpbgpa |
Επίσημο URL | https://chromewebstore.google.com/detail/amazon-reviews-scraper/jncfccofhdpofdddbkacpnbhlfnpbgpa |
Περιγραφή | This extension will help scrape reviews of Amazon products. |
Μέγεθος Αρχείου | 13.6 KB |
Αριθμός Εγκαταστάσεων | 270 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2021-02-07 |
Ημερομηνία Δημοσίευσης | 2021-02-06 |
Αξιολόγηση | 1.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | EverdayExtensions |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Amazon Reviews Scraper", "version": "1.0", "description": "This extension will help scrape reviews of Amazon products.", "manifest_version": 2, "browser_action": { "default_popup": "popup\/index.html", "default_icon": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/product-reviews\/*" ], "css": [ "scripts\/content\/css\/webContent.css" ], "js": [ "scripts\/content\/js\/webContent.js" ] } ], "icons": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" }, "permissions": [ "storage" ] } |