# Chrome Web Store reviews scraper task

**Use case:** 

Scrape Chrome Web Store extension reviews with ratings, dates, reviewer names, helpful votes, and review text for monitoring.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://chromewebstore.google.com/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm/reviews"
    }
  ],
  "extensionIds": [
    "cjpalhdlnbpafiamejdnhcphjbkeiagm"
  ],
  "maxReviews": 20,
  "useApifyProxy": false,
  "proxyCountryCode": "US"
}
```

## Output

```json
{
  "extensionId": {
    "label": "Extension ID"
  },
  "extensionName": {
    "label": "Extension name"
  },
  "reviewId": {
    "label": "Review ID"
  },
  "reviewerName": {
    "label": "Reviewer"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewDate": {
    "label": "Review date"
  },
  "reviewText": {
    "label": "Review text",
    "format": "text"
  },
  "helpfulVotes": {
    "label": "Helpful votes"
  },
  "totalVotes": {
    "label": "Total votes"
  },
  "developerResponse": {
    "label": "Developer response",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Chrome Web Store Extension Reviews Scraper](https://apify.com/automation-lab/chrome-webstore-extension-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/chrome-webstore-extension-reviews-scraper) to learn more, explore other use cases, and run it yourself.