# Chrome Web Store review scraper task

**Use case:** 

Collect Chrome extension reviews with ratings, reviewer names, review dates, helpful votes, language, version, and source URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://chromewebstore.google.com/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm/reviews"
    }
  ],
  "extensionIds": [
    "cjpalhdlnbpafiamejdnhcphjbkeiagm"
  ],
  "maxReviewsPerExtension": 20,
  "reviewsPerPage": 10,
  "language": "en"
}
```

## Output

```json
{
  "extensionName": {
    "label": "Extension"
  },
  "extensionId": {
    "label": "Extension ID"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewerName": {
    "label": "Reviewer"
  },
  "reviewBody": {
    "label": "Review"
  },
  "reviewDate": {
    "label": "Review date"
  },
  "helpfulCount": {
    "label": "Helpful votes"
  },
  "extensionVersion": {
    "label": "Version"
  },
  "locale": {
    "label": "Locale"
  },
  "totalReviewCount": {
    "label": "Total reviews"
  },
  "extensionUrl": {
    "label": "Extension URL"
  },
  "reviewId": {
    "label": "Review ID"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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