# Chrome Web Store Scraper — Extensions Data API

**Use case:** 

Scrape Chrome Web Store extensions: name, users, ratings, reviews, version, and developer. Export extension data for competitor and market analysis.

## Input

```json
{
  "extensionUrls": [
    {
      "url": "https://chromewebstore.google.com/detail/dark-reader/eimadpbcbfnmbkopoojfekhnkhdbieeh"
    }
  ],
  "searchKeywords": [],
  "maxSearchResultsPerKeyword": 1,
  "includeSearchResultDetails": false,
  "pushSearchSnapshots": false,
  "language": "en-US",
  "timeoutSeconds": 25,
  "maxConcurrency": 1,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "searchKeyword": {
    "label": "Keyword"
  },
  "searchRank": {
    "label": "Rank"
  },
  "extensionTitle": {
    "label": "Extension title"
  },
  "category": {
    "label": "Category"
  },
  "rating": {
    "label": "Rating"
  },
  "ratingsCount": {
    "label": "Ratings"
  },
  "users": {
    "label": "Users"
  },
  "version": {
    "label": "Version"
  },
  "updated": {
    "label": "Updated"
  },
  "status": {
    "label": "Status"
  },
  "runtimeSeconds": {
    "label": "Seconds"
  }
}
```

## About this Actor

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