Chrome Extension Quickstart
Run your first browser audit in 5 minutes with the VertaaUX Chrome Extension
Chrome Extension Quickstart
This guide walks you through installing the VertaaUX Chrome Extension and running your first audit. By the end, you will see accessibility and UX issues highlighted directly on a webpage.
Time required: 5 minutes
Prerequisites
- Google Chrome browser (version 120 or later)
- A VertaaUX API key (create one here)
Don't have an API key?
- Sign up at vertaaux.ai/signup (free tier available)
- Go to Settings > API Keys
- Click "Create API Key"
- Copy the key (starts with
vx_live_orvx_test_)
Step 1: Install the Extension
Option A: Chrome Web Store (Recommended)
- Open the VertaaUX Extension in Chrome Web Store
- Click Add to Chrome
- Click Add extension when prompted
- You will see the VertaaUX icon in your toolbar
Pin the extension for easy access: Click the puzzle piece icon in Chrome's toolbar, then click the pin icon next to VertaaUX.
Option B: Manual Installation
For development builds or testing:
# Clone and build the extension
git clone https://github.com/vertaaux/extension.git
cd extension
npm install
npm run buildThen in Chrome:
- Navigate to
chrome://extensions - Enable Developer mode (top-right toggle)
- Click Load unpacked
- Select the
extension/distfolder - The extension icon appears in your toolbar
Step 2: Configure Your API Key
- Click the VertaaUX extension icon in your toolbar
- A popup appears with a text field for your API key
- Paste your API key (starts with
vx_live_orvx_test_) - Click Save
- The popup shows "API key saved" confirmation
Your API key is stored securely in Chrome's local storage and persists across browser sessions.
Use a test key (vx_test_...) during development to avoid consuming your production quota.
Step 3: Navigate to a Website
Open any website you want to audit. For this quickstart, we recommend using:
- Your own project's staging site
- A public website like
https://example.com - A local development server like
http://localhost:3000
The extension works on any URL, including localhost.
Step 4: Open the Side Panel
Open the Side Panel using any of these methods:
Keyboard shortcut: Press Ctrl+Shift+U (Windows/Linux) or Cmd+Shift+U (Mac) to toggle the Side Panel.
Alternative methods:
- Click the VertaaUX extension icon and select "Open Side Panel"
- Right-click anywhere on the page and select "VertaaUX > Open Side Panel"
The Side Panel opens on the right side of your browser window.
Step 5: Run Your First Scan
In the Side Panel:
- Click the Quick Scan button
- Watch the progress indicator (typically completes in 2 seconds)
- Results appear in the Side Panel's issue list
The Quick Scan runs basic accessibility checks using axe-core. For comprehensive analysis, use Full Scan (takes approximately 15 seconds).
Step 6: See Issues on the Page
Once the scan completes, issues appear as colored overlays on the page:
Overlay colors indicate severity:
| Color | Severity | Action |
|---|---|---|
| Red border | Critical | Must fix immediately |
| Orange border | Serious | Should fix soon |
| Yellow border | Moderate | Good to fix |
| Blue border | Minor | Nice to fix |
Interacting with overlays:
- Hover over an overlay to see a quick summary tooltip
- Click an overlay to select it and view full details in the Side Panel
- Click elsewhere to deselect
What You Should See
After completing the scan, you should see:
-
Side Panel showing:
- Total issues found with severity breakdown
- Filterable issue list
- Overall scan score
-
Page overlays showing:
- Colored borders around elements with issues
- Cluster badges where multiple issues are nearby
- Tooltips on hover
-
Selected issue details showing:
- Issue description and impact
- WCAG reference (for accessibility issues)
- Element selector for the affected element
Troubleshooting
No overlays appear after scan
- Verify your API key is correct (check the extension popup)
- Try a Full Scan instead of Quick Scan
- Check the browser console for errors (
F12> Console tab)
Extension icon is grayed out
- Make sure you are on an
http://orhttps://page (notchrome://) - Some internal Chrome pages block extensions
Scan takes too long
- Quick Scan should complete in under 5 seconds
- For slow pages, the extension waits for the page to stabilize
- Try refreshing the page and scanning again
API key error
- Verify the key starts with
vx_live_orvx_test_ - Check your quota at vertaaux.ai/settings/usage
- Test keys have the same functionality as live keys
Next Steps
Now that you have run your first audit:
Side Panel Guide
Learn the full triage workflow - filters, actions, and exports
DevTools Panel
Deep analysis with element inspection and computed styles
Understanding Overlays
How the overlay system works, customization options
Record User Flows
Audit multi-step processes like login or checkout
Related
- API Authentication - API key management and security
- CLI Quickstart - Run audits from your terminal
- SDK Quickstart - Integrate audits into your application
Was this page helpful?