Amazon Review Scraper
This extension will help scrape reviews of amazon products.
Hvad er Amazon Review Scraper?
Amazon Review Scraper er en Chrome-udvidelse udviklet af Usman Yousaf Ali, og dens hovedfunktion er "This extension will help scrape reviews of amazon products.".
Udvidelsesskærmbilleder
Download Amazon Review Scraper-udvidelses-CRX-fil
Download Amazon Review Scraper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This extension will scrape the Amazon product reviews and save it into a csv format. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | anhalgipklgipnccbleknhbekjgojjgo |
| Officiel URL | https://chromewebstore.google.com/detail/amazon-review-scraper/anhalgipklgipnccbleknhbekjgojjgo |
| Beskrivelse | This extension will help scrape reviews of amazon products. |
| Filstørrelse | 24.62 KB |
| Antal Installationer | 36 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2021-08-17 |
| Udgivelsesdato | 2021-08-16 |
| Bedømmelse | 1.00/5 Samlet 1 Bedømmelser |
| Udvikler | Usman Yousaf Ali |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
]
} | |