Amazon Review Scraper
This extension will help scrape reviews of amazon products.
Что такое Amazon Review Scraper?
Amazon Review Scraper - это расширение Chrome, разработанное Usman Yousaf Ali, и его основная функция - "This extension will help scrape reviews of amazon products.".
Снимки экрана расширения
Скачать файл CRX расширения Amazon Review Scraper
Скачайте файлы расширений Amazon Review Scraper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension will scrape the Amazon product reviews and save it into a csv format.
Основная информация о расширении
Название | Amazon Review Scraper |
ID | anhalgipklgipnccbleknhbekjgojjgo |
Официальный URL | https://chromewebstore.google.com/detail/amazon-review-scraper/anhalgipklgipnccbleknhbekjgojjgo |
Описание | This extension will help scrape reviews of amazon products. |
Размер файла | 24.62 KB |
Количество установок | 36 |
Текущая Версия | 1.0 |
Последнее Обновление | 2021-08-17 |
Дата публикации | 2021-08-16 |
Рейтинг | 1.00/5 Всего 1 оценок |
Разработчик | Usman Yousaf Ali |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } |