# Google-CWS

> The Chrome Web Store fetcher. It requests the URLs a developer put in the metadata of a Chrome extension or theme. Google publishes fetcher addresses in two files — user-triggered-fetchers.json and user-triggered-fetchers-google.json — and does not say per fetcher which one applies, so verification means checking both; this index mirrors both.

| field | value |
|---|---|
| operator | Google |
| category | Tools and frameworks |
| robots.txt token | `Google-CWS` |
| user-agent contains | `Google-CWS` |
| robots.txt | not governed by robots.txt (user-initiated, by operator policy) |
| verify by | published IP ranges |
| published IP ranges | https://developers.google.com/static/search/apis/ipranges/user-triggered-fetchers.json |
| prefixes mirrored | 529 IPv4 / 529 IPv6 |
| operator docs | https://developers.google.com/search/docs/crawling-indexing/google-user-triggered-fetchers |
| last reviewed | 2026-09-01 |

## What blocking it costs you

Chrome Web Store listings that point at your pages cannot fetch them. Relevant only if you publish extensions.

## Full user-agent string

```
Mozilla/5.0 (compatible; Google-CWS)
```

## Block it

```
User-agent: Google-CWS
Disallow: /
```

## Allow it

```
User-agent: Google-CWS
Allow: /
```

JSON: https://www.pathwren.workers.dev/crawler/google-cws.json · index: https://www.pathwren.workers.dev/llms.txt
