Amazon Review Scraper
This extension will help scrape reviews of amazon products.
Co je Amazon Review Scraper?
Amazon Review Scraper je rozšíření Chrome vyvinuté Usman Yousaf Ali, a jeho hlavní funkcí je „This extension will help scrape reviews of amazon products.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Amazon Review Scraper
Stáhněte si soubory rozšíření Amazon Review Scraper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This extension will scrape the Amazon product reviews and save it into a csv format.
Základní Informace o Rozšíření
Název | Amazon Review Scraper |
ID | anhalgipklgipnccbleknhbekjgojjgo |
Oficiální URL | https://chromewebstore.google.com/detail/amazon-review-scraper/anhalgipklgipnccbleknhbekjgojjgo |
Popis | This extension will help scrape reviews of amazon products. |
Velikost souboru | 24.62 KB |
Počet instalací | 36 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2021-08-17 |
Datum Vydání | 2021-08-16 |
Hodnocení | 1.00/5 Celkem 1 Hodnocení |
Vývojář | Usman Yousaf Ali |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" ] } |