# Chrome Web Store Ad Blocker Extensions Scraper

**Use case:** 

Scrape ad blocker extensions from the Chrome Web Store with name, rating, rating count, and user count. Export structured data to JSON or CSV.

## Input

```json
{
  "maxItems": 50,
  "mode": "search",
  "searchQuery": "ad blocker"
}
```

## Output

```json
{
  "extensionId": {
    "label": "Extension Id",
    "format": "text"
  },
  "iconUrl": {
    "label": "Icon Url",
    "format": "link"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "text"
  },
  "ratingCount": {
    "label": "Rating Count",
    "format": "text"
  },
  "users": {
    "label": "Users",
    "format": "text"
  },
  "version": {
    "label": "Version",
    "format": "date"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "shortDescription": {
    "label": "Short Description",
    "format": "date"
  },
  "websiteUrl": {
    "label": "Website Url",
    "format": "link"
  },
  "permissions": {
    "label": "Permissions",
    "format": "text"
  },
  "manifestVersion": {
    "label": "Manifest Version",
    "format": "date"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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