Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计异常

claude-chromeClaude chrome 搜索

Agent Skill

claude-chrome 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,944

周安装

81

GitHub Stars

63

下载量

648
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:claude-chrome(Claude chrome 搜索)
来源仓库:https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations
仓库路径:skills/claude-chrome
安装命令:
npx skills add https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations --skill claude-chrome
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations --skill claude-chrome

简介

claude-chrome 允许 Claude 控制用户已登录的真实 Chrome 浏览器实例。

  • 可用于 Gmail、Notion、CRM 等需要身份认证的网页自动化操作。
  • 支持两种集成模式:Claude Code + 浏览器插件 或 DevTools MCP 服务端。
  • 需授权浏览器扩展并确保不会在非受控页面执行敏感点击或表单提交。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Claude in Chrome Skill

Control your real Chrome browser with Claude. The extension runs in your authenticated browser session, so Claude can interact with sites you're already logged into - Gmail, Google Docs, Notion, CRMs, and more.

Integration Options

There are two ways to control Chrome:

  1. Claude Code + Chrome Extension - Terminal-based browser control via claude --chrome
  2. Chrome DevTools MCP - MCP server providing 26 browser automation tools

Both use your real Chrome with existing logins - no re-authentication needed.


Option 1: Claude Code + Chrome Extension

Prerequisites

  • Google Chrome browser
  • Claude in Chrome extension (v1.0.36+) from Chrome Web Store
  • Claude Code CLI (v2.0.73+)
  • Paid Claude plan (Pro, Team, Enterprise, or Max)

Setup

Update Claude Code:

claude update

Start with Chrome enabled:

claude --chrome

Check connection status:

/chrome

Enable Chrome by default:

/chrome
# Select "Enabled by default"

Browser Capabilities

Navigation & Interaction:

  • Navigate to URLs
  • Click elements (buttons, links, form fields)
  • Type text into inputs
  • Scroll pages
  • Create and manage tabs
  • Resize windows

Information Retrieval:

  • Read page content and DOM state
  • Access console logs and errors
  • Monitor network requests
  • Extract structured data from pages

Advanced:

  • Fill forms automatically
  • Record browser actions as GIFs
  • Chain browser + terminal commands
  • Work across multiple tabs

Example Prompts

Basic Navigation

Go to github.com/anthropics and click on the "Code" tab

Form Testing

Open localhost:3000, try submitting the login form with invalid data,
and check if error messages appear correctly

Console Debugging

Open the dashboard page and check the console for any errors when
the page loads

Data Extraction

Go to the product listings page and extract the name, price, and
availability for each item. Save as CSV.

Authenticated Workflows

Draft a project update based on our recent commits and add it to
my Google Doc at docs.google.com/document/d/abc123

Form Automation

I have contacts in contacts.csv. For each row, go to crm.example.com,
click "Add Contact", and fill in the name, email, and phone fields.

Record Demo GIF

Record a GIF showing the checkout flow from adding an item to cart
through to the confirmation page

How It Works

  1. Extension uses Chrome's Native Messaging API to receive commands
  2. Claude opens new tabs for tasks (doesn't take over existing tabs)
  3. Uses your browser's login state - no re-authentication needed
  4. Pauses for CAPTCHAs, login prompts, or modal dialogs (you handle, then continue)

Troubleshooting

Extension not detected:

claude --version  # Should be 2.0.73+

Then run /chrome and select "Reconnect extension"

Browser not responding:

  • Check for blocking modal dialogs (alert, confirm, prompt)
  • Ask Claude to create a new tab and retry
  • Restart Chrome extension (disable/re-enable in chrome://extensions)

Option 2: Chrome DevTools MCP

An alternative/complementary approach using Model Context Protocol.

Installation

claude mcp add chrome-devtools npx chrome-devtools-mcp@latest

Or add to MCP config:

{
  "mcpServers": {
    "chrome-devtools": {
      "command": "npx",
      "args": ["-y", "chrome-devtools-mcp@latest"]
    }
  }
}

Available Tools (26 total)

Input Automation (8 tools):

  • click - Click elements
  • drag - Drag and drop
  • fill - Fill input fields
  • fill_form - Fill entire forms
  • handle_dialog - Handle alerts/confirms/prompts
  • hover - Hover over elements
  • press_key - Keyboard input
  • upload_file - Upload files

Navigation (6 tools):

  • navigate_page - Go to URL
  • new_page - Create new tab
  • close_page - Close tab
  • list_pages - List open pages
  • select_page - Switch to page
  • wait_for - Wait for element/condition

Debugging (5 tools):

  • take_screenshot - Capture page
  • take_snapshot - Capture DOM
  • evaluate_script - Run JavaScript
  • get_console_message - Get console log
  • list_console_messages - Get all logs

Network (2 tools):

  • list_network_requests - List requests
  • get_network_request - Get request details

Performance (3 tools):

  • performance_start_trace - Start tracing
  • performance_stop_trace - Stop tracing
  • performance_analyze_insight - Analyze results

Emulation (2 tools):

  • emulate - Emulate device
  • resize_page - Resize viewport

Configuration Options

# Connect to running Chrome
npx chrome-devtools-mcp@latest --browser-url http://localhost:9222

# Headless mode
npx chrome-devtools-mcp@latest --headless

# Custom viewport
npx chrome-devtools-mcp@latest --viewport 1920x1080

# Use Chrome Canary
npx chrome-devtools-mcp@latest --channel canary

Claude in Chrome Extension Features

Workflow Shortcuts

Create reusable shortcuts (type "/" in extension):

Record a workflow:

  1. Click cursor icon or type "/" → "Record workflow"
  2. Perform actions while Claude watches
  3. Claude generates shortcut with name, description, URL

Save from conversation:

  • Click "Convert to task" on conversation header
  • Or hover over a sent prompt and save it

Scheduled Tasks

Set recurring browser automation:

  1. When creating shortcut, toggle "Schedule"
  2. Set frequency: daily, weekly, monthly, annually
  3. Choose date/time and model
  4. Claude runs automatically with notifications

Example scheduled tasks:

  • Daily inbox cleanup at 9am
  • Weekly competitor scan every Monday
  • Monthly expense report filing

Multi-Tab Workflows

Claude can see and work across tabs in the same tab group:

  • Reference information from multiple tabs
  • Copy data between tabs
  • Coordinate actions across sites

Workflow Examples

Email Management:

/inbox-cleanup
Archive emails from newsletters, star emails mentioning deadlines,
delete obvious spam

Research:

/competitor-scan
Check competitor blogs, pricing pages, and careers pages.
Summarize any changes since last week.

Form Filling:

/vendor-application
Fill vendor application form using our company documents.
Pause before final submission for review.

Meeting Prep:

/stakeholder-map
Research LinkedIn profiles of meeting attendees.
Summarize their backgrounds and priorities.

Best Practices

When to Use Browser Automation

Good for:

  • Form filling and data entry
  • Button clicking and navigation
  • Extracting data from authenticated pages
  • Testing web applications
  • Executing predefined workflows
  • Tasks behind logins

Better manually:

  • One-click tasks (faster by hand)
  • Subjective decisions
  • Exploratory research (use Claude.ai chat instead)

Tips

  1. Be specific - Ambiguous instructions produce inconsistent results
  2. Add verification - For long lists, add "verify you completed all items"
  3. Handle modals - Dismiss alerts manually, then tell Claude to continue
  4. Use fresh tabs - If a tab becomes unresponsive, ask for a new one
  5. Filter console output - Specify patterns vs. requesting all logs

Security

  • Site-level permissions control which sites Claude can access
  • High-risk actions (publish, purchase, share data) require confirmation
  • Some site categories blocked (financial services, adult content)
  • Manage permissions in extension settings

Common Workflows for Clawdbot

Testing Local Development

"Open localhost:3000, test the new form validation, check console for errors,
and screenshot any issues you find"

Authenticated Data Extraction

"Go to my Google Analytics, get this week's traffic summary,
and save it to a file"

Content Management

"Open my Notion workspace, find the Q4 planning doc,
and add a new section with today's meeting notes"

Email Drafts

"Open Gmail, find unread emails from the engineering team,
and draft replies for each one without sending"

Multi-Site Research

"Compare pricing on our product page vs the top 3 competitors.
Create a markdown table with the differences."

Requirements

ComponentMinimum Version
Google ChromeLatest stable
Claude in Chrome Extension1.0.36+
Claude Code CLI2.0.73+
Claude PlanPro, Team, Enterprise, or Max
Node.js (for DevTools MCP)20.19+

Not supported:

  • Other Chromium browsers (Brave, Arc, Edge)
  • WSL (Windows Subsystem for Linux)
  • Headless mode (for extension; DevTools MCP supports headless)
  • Mobile devices

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.81%
按下载量换算180

OpenCode

22.43%
按下载量换算145

Gemini CLI

19.63%
按下载量换算127

Antigravity

12.21%
按下载量换算79

Codex

8.47%
按下载量换算55

windsurf

3.17%
按下载量换算21

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills