# Chrome extension permission-risk audit (by extension ID)

**Use case:** 

Paste Chrome Web Store extension IDs or a search query and get ratings, user counts, version, developer and the full manifest permission list with a 0-100 permission-risk score per extension. Built for security reviews, IT allow-lists and competitor tracking. HTTP-only, pay per result.

## Input

```json
{
  "extensionUrls": [
    "https://chromewebstore.google.com/detail/ublock-origin-lite/ddkjiahejlhfcafbddmgiahcphecmpfh",
    "https://chromewebstore.google.com/detail/grammarly-ai-writing-assi/kbfnbcaeplbcioakkpcpgfkobkghlhen"
  ],
  "searchQueries": [],
  "categories": [],
  "maxExtensions": 100,
  "minUsers": 0,
  "minRating": 0,
  "onlyRiskLevels": [],
  "requireBroadHostAccess": false,
  "politenessMs": 700
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "string"
  },
  "extensionId": {
    "label": "Extension ID",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Rating count",
    "format": "integer"
  },
  "userCount": {
    "label": "Users",
    "format": "integer"
  },
  "version": {
    "label": "Version",
    "format": "string"
  },
  "lastUpdatedDays": {
    "label": "Last updated (days ago)",
    "format": "number"
  },
  "permissionRiskScore": {
    "label": "Permission-risk score (0-100)",
    "format": "integer"
  },
  "riskLevel": {
    "label": "Risk level",
    "format": "string"
  }
}
```

## About this Actor

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