# Negative Reviews of a Chrome Extension (1 and 2 Stars)

**Use case:** 

Get the latest 1 and 2 star reviews of a Chrome extension with text, date, helpful votes, version reviewed and the developer's reply. Paste a competitor's link to find their weak spots, or your own to catch bugs early.

## Input

```json
{
  "mode": "reviews",
  "extensionUrls": [
    "https://chromewebstore.google.com/detail/grammarly/kbfnbcaeplbcioakkpcpgfkobkghlhen"
  ],
  "maxItems": 30,
  "includeDetails": true,
  "maxReviews": 100,
  "reviewsSort": "recent",
  "maxRating": 2,
  "language": "en",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "extensionName": {
    "label": "Extension",
    "format": "text"
  },
  "rating": {
    "label": "Stars",
    "format": "number"
  },
  "text": {
    "label": "Review",
    "format": "text"
  },
  "createdAt": {
    "label": "Date",
    "format": "date"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "extensionVersion": {
    "label": "Version reviewed",
    "format": "text"
  },
  "helpfulCount": {
    "label": "Helpful votes",
    "format": "number"
  },
  "developerReply": {
    "label": "Developer reply",
    "format": "text"
  },
  "developerReplyAt": {
    "label": "Reply date",
    "format": "date"
  },
  "extensionReviewCount": {
    "label": "Total reviews",
    "format": "number"
  },
  "extensionUrl": {
    "label": "Extension URL",
    "format": "link"
  },
  "errorCode": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/scrapewise/chrome-web-store.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
