# SEO Chrome Extensions Scraper - Chrome Web Store

**Use case:** 

Collect SEO and keyword research extensions from the Chrome Web Store with name, publisher, user count, rating, rating count, version, and store link. Detail mode adds descriptions, permissions, and reviews. Ideal for SEO tool market research, competitor tracking, and finding partnership or outreach targets. Swap in your own search keywords to cover any category.

## Input

```json
{
  "searchUrls": [
    "SEO",
    "keyword research"
  ],
  "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`).
