# AI Chrome Extensions Scraper - Chrome Web Store

**Use case:** 

Search the Chrome Web Store for AI assistant and AI writer extensions and collect name, publisher, user count, rating, rating count, category, version, and store URL. Detail mode adds full metadata, permissions, and reviews. Use it to map the AI extension market, find competitors, or build lead lists of extension publishers. Replace the keywords with any niche.

## Input

```json
{
  "searchUrls": [
    "AI assistant",
    "AI writer"
  ],
  "maxExtensionsPerSearch": 50,
  "categorySort": "popular",
  "maxExtensionsPerCategory": 10,
  "scrapeHomePage": false,
  "maxExtensionsFromHomePage": 50,
  "filterBy": "all",
  "fetchDetails": true,
  "fetchReviews": false,
  "maxReviews": 10,
  "reviewSort": "newest",
  "proxyCountry": "us"
}
```

## Output

```json
{
  "iconUrl": {
    "label": "Icon",
    "format": "image"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "publisherName": {
    "label": "Publisher",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Ratings",
    "format": "number"
  },
  "userCount": {
    "label": "Users",
    "format": "number"
  },
  "featured": {
    "label": "Featured",
    "format": "boolean"
  },
  "establishedPublisher": {
    "label": "Established publisher",
    "format": "boolean"
  },
  "version": {
    "label": "Version",
    "format": "text"
  },
  "lastUpdated": {
    "label": "Updated",
    "format": "date"
  },
  "storeUrl": {
    "label": "Store page",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Chrome Web Store Extension](https://apify.com/calm_builder/chrome-web-store-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/calm_builder/chrome-web-store-scraper.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/calm_builder/chrome-web-store-scraper.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`).
