Skip to main content
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, 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:
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.