Send any webpage to your OpenClaw AI agent with one click.
- One Click Send β Click the lobster, send the page
- Multiple Actions β Analyze, summarize, extract data, or custom prompts
- Right-Click Menu β Send pages, links, or selected text via context menu
- Fully Configurable β Point to your own OpenClaw instance
- 100% Open Source β No tracking, no analytics, your data stays yours
- Download or clone this repository
- Open Chrome and go to
chrome://extensions/ - Enable "Developer mode" (top right)
- Click "Load unpacked"
- Select the
extensionfolder from this repo - The π¦ icon should appear in your toolbar
- Click the π¦ icon in your toolbar
- Click "βοΈ Settings"
- Enter your OpenClaw webhook URL
- (Optional) Set your Agent ID and default action
- Click "Save Settings"
The extension sends this JSON payload to your webhook:
{
"url": "https://example.com/page",
"title": "Page Title",
"action": "analyze",
"prompt": "Analyze this webpage and tell me what it's about: https://example.com/page",
"agentId": "main",
"timestamp": "2026-02-19T12:00:00.000Z",
"source": "openclaw-chrome-extension"
}| Action | Description |
|---|---|
analyze |
Analyze the page and describe what it's about |
summarize |
Summarize the page content |
extract |
Extract key information from the page |
custom |
Use your own prompt |
To receive webhooks in your OpenClaw agent, you need to:
- Enable webhook endpoint in your OpenClaw instance
- Configure your agent to handle incoming webhook payloads
- (Optional) Set up a skill to process the URLs
Example skill for handling extension requests:
# Skill: Process Chrome Extension Request
When receiving a webhook from `openclaw-chrome-extension`:
1. Fetch the URL content using `web_fetch`
2. Process according to the `action` field
3. Respond to the user via their configured channel# Clone the repo
git clone https://github.com/lacrypta/openclaw-chrome-extension.git
# Load in Chrome
# 1. Go to chrome://extensions/
# 2. Enable Developer mode
# 3. Load unpacked β select /extension folderMIT β Built by La Crypta