Amazon Review Scraper
This extension will help scrape reviews of amazon products.
Co to jest Amazon Review Scraper?
Amazon Review Scraper to rozszerzenie Chrome opracowane przez Usman Yousaf Ali, a jego główną funkcją jest „This extension will help scrape reviews of amazon products.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Amazon Review Scraper
Pobierz pliki rozszerzeń Amazon Review Scraper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension will scrape the Amazon product reviews and save it into a csv format. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | anhalgipklgipnccbleknhbekjgojjgo |
| Oficjalny URL | https://chromewebstore.google.com/detail/amazon-review-scraper/anhalgipklgipnccbleknhbekjgojjgo |
| Opis | This extension will help scrape reviews of amazon products. |
| Rozmiar pliku | 24.62 KB |
| Liczba instalacji | 36 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2021-08-17 |
| Data Publikacji | 2021-08-16 |
| Ocena | 1.00/5 Łącznie 1 Oceny |
| Deweloper | Usman Yousaf Ali |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
]
} | |