Amazon Review Scraper
This extension will help scrape reviews of amazon products.
Vad är Amazon Review Scraper?
Amazon Review Scraper är en Chrome-tillägg utvecklad av Usman Yousaf Ali, och dess huvudfunktion är "This extension will help scrape reviews of amazon products.".
Tilläggsskärmbilder
Ladda ner Amazon Review Scraper-förlängningens CRX-fil
Ladda ner Amazon Review Scraper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension will scrape the Amazon product reviews and save it into a csv format.
Grundläggande Information om Tillägg
Namn | Amazon Review Scraper |
ID | anhalgipklgipnccbleknhbekjgojjgo |
Officiell webbadress | https://chromewebstore.google.com/detail/amazon-review-scraper/anhalgipklgipnccbleknhbekjgojjgo |
Beskrivning | This extension will help scrape reviews of amazon products. |
Filstorlek | 24.62 KB |
Antal Installationer | 36 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2021-08-17 |
Publiceringsdatum | 2021-08-16 |
Betyg | 1.00/5 Totalt 1 Betyg |
Utvecklare | Usman Yousaf Ali |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Amazon Review 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" ] } |