Amazon Reviews Scraper
This extension will help scrape reviews of Amazon products.
Amazon Reviews Scraper क्या है?
Amazon Reviews Scraper EverdayExtensions द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will help scrape reviews of Amazon products."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Amazon Reviews Scraper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |