# Send Claude Chrome to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "claude-chrome",
    "name": "Claude Chrome",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/dgriffin831/claude-chrome",
    "canonicalUrl": "https://clawhub.ai/dgriffin831/claude-chrome",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/claude-chrome",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claude-chrome",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "claude-chrome",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T11:36:23.818Z",
      "expiresAt": "2026-05-08T11:36:23.818Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claude-chrome",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claude-chrome",
        "contentDisposition": "attachment; filename=\"claude-chrome-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "claude-chrome"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/claude-chrome"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/claude-chrome",
    "downloadUrl": "https://openagent3.xyz/downloads/claude-chrome",
    "agentUrl": "https://openagent3.xyz/skills/claude-chrome/agent",
    "manifestUrl": "https://openagent3.xyz/skills/claude-chrome/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/claude-chrome/agent.md"
  }
}
```
## Documentation

### Claude Chrome — Browser Automation via Claude Code

Use Claude Code's Chrome integration to browse the web, interact with pages, and automate browser tasks. This is an alternative to OpenClaw's built-in browser tools (Chrome Relay, OpenClaw profile).

### Prerequisites

Claude Code installed on the node (e.g. /opt/homebrew/bin/claude)
Claude Code Chrome extension installed and enabled in Chrome
Chrome running on the node

### How It Works

Claude Code can connect to Chrome via its built-in browser extension (MCP server). When enabled, Claude Code gains browser tools — it can navigate pages, click elements, fill forms, read content, and more.

### Step 1: Check if Chrome Extension is Active

Look for the native host process to confirm the Chrome extension is running:

nodes.run node=<your-node-id> command='["bash", "-lc", "pgrep -f \\"claude --chrome-native-host\\""]'

If this returns a PID, the Chrome extension bridge is active and ready.

### Step 2: Run Claude Code with Chrome

Use nodes.run with your node to execute browser tasks:

nodes.run node=<your-node-id> commandTimeoutMs=120000 command='["bash", "-lc", "claude --dangerously-skip-permissions --chrome -p \\"Go to example.com and read the headline\\""]'

Flags:

--dangerously-skip-permissions — auto-approve all actions (required for automation)
--chrome — enable Chrome browser integration
-p / --print — non-interactive print mode (required for automated use)
bash -lc — login shell to ensure PATH is loaded

Timeout: See benchmarks below for guidance. Recommended defaults:

Simple tasks (single page read): commandTimeoutMs=30000 (30 seconds)
Medium complexity (multi-step navigation): commandTimeoutMs=120000 (2 minutes)
Complex workflows (multiple pages + summarization): commandTimeoutMs=180000 (3 minutes)

### Performance Benchmarks

Task TypeExampleDurationRecommended TimeoutSimpleRead button text on Google13s30s (30000ms)MediumWikipedia search + navigate + summarize76s2min (120000ms)ComplexMulti-page navigation + external links~90s+3min (180000ms)

Gateway timeout note: OpenClaw's gateway has a hardcoded 10-second connection timeout. Commands will error immediately but continue running in the background. Results arrive via system messages when complete.

### Limitations

Domain permissions: Claude Code's Chrome extension may require user approval for new domains (cannot be automated)
Gateway timeout: Initial connection times out at 10s, but commands continue running
Desktop required: Only works on nodes with a desktop environment, Chrome, and the extension active

### Tips

Always use --dangerously-skip-permissions for automated runs
Always use -p / --print for non-interactive output
Always use bash -lc for login shell (PATH loading)
Be aggressive with timeouts - commands complete in background even after gateway timeout
Claude Code can combine coding and browsing in a single session
Check the native host process before attempting browser tasks
For simple data scraping, consider web_fetch instead (faster, no domain permissions needed)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dgriffin831
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T11:36:23.818Z
- Expires at: 2026-05-08T11:36:23.818Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/claude-chrome)
- [Send to Agent page](https://openagent3.xyz/skills/claude-chrome/agent)
- [JSON manifest](https://openagent3.xyz/skills/claude-chrome/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/claude-chrome/agent.md)
- [Download page](https://openagent3.xyz/downloads/claude-chrome)