# Firefox SEO add-ons scraper task

**Use case:** 

Extract top Firefox SEO add-ons with users, ratings, versions, authors, permissions, and support links from Mozilla Add-ons.

## Input

```json
{
  "queries": [
    "seo"
  ],
  "startUrls": [
    {
      "url": "https://addons.mozilla.org/en-US/firefox/addon/seoquake-seo-extension/"
    }
  ],
  "maxItems": 100,
  "sort": "users",
  "locale": "en-US",
  "includeDetails": true
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "slug": {
    "label": "Slug",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "averageDailyUsers": {
    "label": "Daily users",
    "format": "number"
  },
  "ratingsAverage": {
    "label": "Rating",
    "format": "number"
  },
  "ratingsCount": {
    "label": "Ratings",
    "format": "number"
  },
  "currentVersion": {
    "label": "Version",
    "format": "text"
  },
  "lastUpdated": {
    "label": "Last updated",
    "format": "date"
  },
  "authorNames": {
    "label": "Authors",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "text"
  },
  "permissions": {
    "label": "Permissions",
    "format": "text"
  },
  "sourceQuery": {
    "label": "Source query",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Firefox Add-ons Scraper](https://apify.com/automation-lab/firefox-addons-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/firefox-addons-scraper) to learn more, explore other use cases, and run it yourself.