Amazon Review Scraper
Scrape Amazon reviews, ratings with this extension.
Amazon Review Scraper क्या है?
Amazon Review Scraper sarathisahoo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Scrape Amazon reviews, ratings with this extension."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Amazon Review Scraper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
With this extension you can scrape reviews and ratings of any amazon product within few seconds. Go to Amazon website, Go to any product page. Then right click on page and click "Scrape Reviews from this product" option. It will extract all reviews and ratings of the product and save it as a CSV excel file.
एक्सटेंशन की मूल जानकारी
नाम | Amazon Review Scraper |
ID | kpmpdlljfabhiffaoamleakiblkbmmle |
आधिकारिक URL | https://chromewebstore.google.com/detail/amazon-review-scraper/kpmpdlljfabhiffaoamleakiblkbmmle |
विवरण | Scrape Amazon reviews, ratings with this extension. |
फ़ाइल का आकार | 138 KB |
स्थापना संख्या | 333 |
वर्तमान संस्करण | 1.1.4 |
अंतिम अपडेट | 2020-09-06 |
प्रकाशन तिथि | 2019-07-25 |
रेटिंग | 3.25/5 कुल 4 रेटिंग्स |
डेवलपर | sarathisahoo |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | https://www.privacypolicies.com/live/6a5bf36b-a38f-4aa4-b7e6-dbc18ab164ff |
समर्थित भाषाएँ | en |
manifest.json | |
{ "background": { "persistent": true, "scripts": [ "js\/csv.js", "js\/async.min.js", "src\/bg\/background.js" ] }, "content_scripts": [ { "js": [ "js\/jquery\/jquery.min.js", "js\/async.min.js", "js\/jquery.query-object.js", "src\/inject\/inject.js" ], "matches": [ "*:\/\/*.amazon.com\/*", "*:\/\/*.amazon.co.uk\/*", "*:\/\/*.amazon.com.au\/*", "*:\/\/*.amazon.ca\/*", "*:\/\/*.amazon.in\/*", "*:\/\/*.amazon.de\/*", "*:\/\/*.amazon.fr\/*", "*:\/\/*.amazon.it\/*", "*:\/\/*.amazon.es\/*", "file:\/\/\/*" ] } ], "browser_action": { "default_icon": "icons\/icon.png" }, "default_locale": "en", "description": "Scrape Amazon reviews, ratings with this extension.", "icons": { "128": "icons\/icon.png" }, "manifest_version": 2, "name": "Amazon Review Scraper", "permissions": [ "downloads", "contextMenus", "*:\/\/*.amazon.com\/*", "*:\/\/*.amazon.ca\/*", "*:\/\/*.amazon.in\/*", "*:\/\/*.amazon.co.uk\/*", "*:\/\/*.amazon.com.au\/*", "*:\/\/*.amazon.de\/*", "*:\/\/*.amazon.fr\/*", "*:\/\/*.amazon.it\/*", "*:\/\/*.amazon.es\/*" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.1.4" } |