Extension Setup
The Chrome extension enables browser automation — clicking, typing, scrolling, and extracting data from web pages.
Installation
Manual Install Required
The extension is not yet on the Chrome Web Store. Follow these steps to install manually.
Step 1: Download the Extension
Option A: From GitHub Release
- Go to GitHub Releases
- Download
extension.zipfrom the latest release - Extract the zip file
Option B: From Source
git clone https://github.com/sidebutton/sidebutton.git
cd sidebutton/extensionStep 2: Load in Chrome
- Open Chrome and navigate to
chrome://extensions/ - Enable Developer mode (toggle in top-right corner)
- Click Load unpacked
- Select the
extension/folder
You should see "SideButton" appear in your extensions list.
Step 3: Pin the Extension
- Click the puzzle piece icon in Chrome's toolbar
- Find "SideButton" and click the pin icon
- The extension icon should now be visible in your toolbar
Step 4: Connect a Tab
- Navigate to any website (e.g., wikipedia.org)
- Click the extension icon in your toolbar
- Click "Connect This Tab"
The popup should show "Connected" status.
Verify Connection
Check the connection status in the dashboard:
- Open http://localhost:9876
- Look for the green "Browser Connected" indicator in the sidebar
Or use the health endpoint:
curl http://localhost:9876/healthExpected response with extension connected:
{
"status": "ok",
"browser_connected": true,
"tab_id": 123456
}How It Works
┌──────────────┐ WebSocket ┌──────────────┐
│ Server │◄──────────────────►│ Extension │
│ (port 9876) │ │ (Chrome) │
└──────────────┘ └──────────────┘The extension:
- Connects via WebSocket to the local server
- Executes browser commands (click, type, scroll, extract)
- Captures recordings when you record actions
- Injects embed buttons into pages based on workflow config
Extension Permissions
The extension requests these permissions:
| Permission | Why It's Needed |
|---|---|
activeTab | Access current tab for automation |
scripting | Inject content scripts for DOM operations |
tabs | Navigate and manage tabs |
debugger | Use Chrome DevTools Protocol for reliable automation |
storage | Save connection state |
<all_urls> | Work on any website |
Privacy Note
All automation runs locally on your computer. The extension only communicates with your local server (localhost:9876), never with external servers.
Troubleshooting
Extension not connecting
- Is the server running? Check http://localhost:9876
- Refresh the page and click "Connect This Tab" again
- Check the console — Right-click extension icon → "Inspect popup" → Console
"Connect This Tab" button doesn't appear
Make sure:
- You're on a regular webpage (not
chrome://pages) - The extension is enabled in
chrome://extensions/ - Developer mode is on
Automation not working on specific site
Some sites block automation. Check:
- The site's Content Security Policy
- If you're logged in (some actions require auth)
- The selector is correct (use capture_page to find selectors)
Next Steps
- Run Your First Workflow — See browser automation in action
- Recording Mode — Create workflows by clicking
- Embed Buttons — Add automation buttons to pages