# Scrape Chrome Extensions from Store URLs

**Use case:** 

Paste Chrome Web Store category or search URLs and export every extension found. Get names, ratings, installs, developer and store links in one run.

## Input

```json
{
  "mode": "search",
  "searchQueries": [
    "screenshot"
  ],
  "extensionUrls": [
    "kbfnbcaeplbcioakkpcpgfkobkghlhen"
  ],
  "startUrls": [
    {
      "url": "https://chromewebstore.google.com/category/extensions/productivity"
    }
  ],
  "maxResultsPerQuery": 50,
  "includeDeveloperContacts": true,
  "includePermissions": true,
  "includeScreenshots": true,
  "enrichDeveloperContacts": false,
  "deduplicateExtensions": true,
  "language": "en",
  "monitorMode": false,
  "monitorStoreName": "chrome-web-store-monitor",
  "maxConcurrency": 6,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "extensionId": {
    "label": "Extension ID"
  },
  "name": {
    "label": "Name"
  },
  "rating": {
    "label": "Rating"
  },
  "ratingCount": {
    "label": "# Ratings"
  },
  "userCount": {
    "label": "Users"
  },
  "category": {
    "label": "Category"
  },
  "version": {
    "label": "Version"
  },
  "lastUpdated": {
    "label": "Updated"
  },
  "size": {
    "label": "Size"
  },
  "developerName": {
    "label": "Developer"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

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