> ## Documentation Index
> Fetch the complete documentation index at: https://docs.crxbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Comped users

> Grant free access to specific users without requiring payment.

Comped (complimentary) users get premium access to your extension without paying. This is useful for beta testers, collaborators, or support cases.

## Adding comped users

In the [Dashboard](https://crxbase.com/dashboard/), open your extension and find the **Comped Users** section. Enter the user's email address and click **Comp User**.

* If the user already has an account, they are marked as comped
* If they don't have an account yet, one is created automatically

## How comped status works

A comped user's `paid` field returns `true` from `getUser()`, so your existing paywall logic works without changes:

```javascript theme={null}
const user = await client.getUser();

if (user?.paid) {
	// True for both paying users AND comped users
	enablePremiumFeatures();
}
```

## Removing comp status

Click the trash icon next to a comped user in the dashboard to remove their complimentary access. Their `paid` status will revert to reflect their actual subscription state.
