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

chrome-devtoolsChrome DevTools 调试

Agent Skill

chrome-devtools 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

808

周安装

34

GitHub Stars

16

下载量

283
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/johnlindquist/claude-workshop-skills --skill chrome-devtools

简介

chrome-devtools 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合整理项目状态和变更事项。

  • 适用于围绕仓库状态、代码变更或协作事项进行信息整理。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Chrome DevTools MCP Skill

Complete Chrome browser automation and debugging using the Chrome DevTools Protocol. This skill provides access to all Chrome DevTools capabilities for web development, testing, and debugging tasks.

Capabilities

  1. Navigate & Automate - Control browser navigation, tabs, and page interactions
  2. Interact with Pages - Click, type, drag, fill forms, upload files
  3. Debug & Inspect - View console logs, network requests, execute scripts
  4. Performance Analysis - Record traces and get performance insights
  5. Emulation - Test different devices, network conditions, viewports
  6. Visual Testing - Take screenshots and DOM snapshots

Quick Reference

For detailed instructions on each operation, see:

Common Workflows

Web Testing Workflow

  1. Navigate to page with navigate_page
  2. Interact with elements using click, fill, press_key
  3. Verify results with take_screenshot or list_console_messages
  4. Check network activity with list_network_requests

Performance Analysis Workflow

  1. Start trace with performance_start_trace
  2. Navigate or interact with page
  3. Stop trace with performance_stop_trace
  4. Get insights with performance_analyze_insight

Debugging Workflow

  1. Navigate to problematic page
  2. Check console with list_console_messages
  3. Inspect network with list_network_requests
  4. Execute diagnostic scripts with evaluate_script
  5. Take screenshots for visual confirmation

Form Testing Workflow

  1. Navigate to form page
  2. Fill individual fields with fill or use fill_form for bulk entry
  3. Upload files if needed with upload_file
  4. Submit and verify with screenshots/console

Tool Categories Overview

Input Automation (8 tools)

  • click - Click on elements
  • drag - Drag and drop operations
  • fill - Enter text in fields
  • fill_form - Fill multiple form fields
  • handle_dialog - Manage alerts/dialogs
  • hover - Hover over elements
  • press_key - Keyboard input
  • upload_file - File upload handling

Navigation (6 tools)

  • navigate_page - Go to URLs
  • new_page - Create new tabs
  • close_page - Close tabs
  • list_pages - View open tabs
  • select_page - Switch tabs
  • wait_for - Wait for conditions

Emulation (2 tools)

  • emulate - Device/condition simulation
  • resize_page - Viewport sizing

Performance (3 tools)

  • performance_start_trace - Begin recording
  • performance_stop_trace - End recording
  • performance_analyze_insight - Get recommendations

Network (2 tools)

  • list_network_requests - View all requests
  • get_network_request - Get request details

Debugging (5 tools)

  • evaluate_script - Run JavaScript
  • take_screenshot - Capture visuals
  • take_snapshot - Capture DOM
  • list_console_messages - View console
  • get_console_message - Get specific message

Critical Instructions

REQUIRED: Before using ANY Chrome DevTools tools, you MUST load the relevant reference file(s) using the Read tool. These references contain essential operational instructions that are NOT included in this overview.

When the user asks to work with Chrome DevTools:

  1. Identify the operation they want to perform (navigate, debug, test, analyze)
  2. MANDATORY: Load the relevant reference file(s) using the Read tool BEFORE executing any tools:

- Navigation tasks → Read references/NAVIGATION.md FIRST - Interaction tasks → Read references/INTERACTION.md FIRST - Debugging tasks → Read references/DEBUGGING.md FIRST - Performance tasks → Read references/PERFORMANCE.md FIRST - Emulation tasks → Read references/EMULATION.md FIRST - Visual testing tasks → Read references/VISUAL.md FIRST

  1. Execute the appropriate MCP tool commands following the patterns from the loaded reference
  2. Report results clearly with screenshots or data as appropriate
  3. Chain operations when needed (e.g., navigate → interact → verify)

DO NOT attempt to use Chrome DevTools tools without first loading and reading the relevant reference documentation.

Best Practices

  • Always wait appropriately - Use wait_for to ensure page readiness
  • Handle errors gracefully - Check console messages and network errors
  • Take screenshots - Visual confirmation is valuable for debugging
  • Chain operations logically - Navigate before interacting, start trace before actions
  • Clean up - Close pages when done to free resources
  • Use selectors carefully - Ensure element selectors are specific and reliable

Examples

Take a screenshot of a website

User: "Take a screenshot of example.com"
Me: Uses navigate_page → wait_for → take_screenshot

Test form submission

User: "Fill out the login form on staging.example.com"
Me: Uses navigate_page → fill_form → click → list_console_messages

Analyze page performance

User: "Check the performance of our homepage"
Me: Uses performance_start_trace → navigate_page → performance_stop_trace → performance_analyze_insight

Debug network issues

User: "Why is the API call failing on /dashboard?"
Me: Uses navigate_page → list_network_requests → get_network_request (for failed request)

Test mobile viewport

User: "How does the site look on iPhone 13?"
Me: Uses emulate (iPhone 13) → navigate_page → take_screenshot

Configuration

The Chrome DevTools MCP server should be configured in Claude Code's MCP settings:

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

Optional configuration flags:

  • --headless false - Show browser window
  • --categoryEmulation - Enable emulation tools
  • --categoryPerformance - Enable performance tools
  • --categoryNetwork - Enable network tools

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.99%
按下载量换算79

Antigravity

22.97%
按下载量换算65

OpenCode

17.4%
按下载量换算49

Gemini CLI

12.46%
按下载量换算35

windsurf

8.73%
按下载量换算25

github-copilot

3.59%
按下载量换算10

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills