Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问clear审计未展示

cc_chrome_devtools_mcp_skillCC chrome devtools MCP 技能

Agent Skill

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

总安装

849

周安装

34

GitHub Stars

31

下载量

275
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/justfinethanku/cc_chrome_devtools_mcp_skill --skill cc_chrome_devtools_mcp_skill

简介

cc_chrome_devtools_mcp_skill 用于自动化 Chrome 浏览器测试和性能分析。

  • 支持网络监控、性能测量、可访问性验证和浏览器自动化等 27 项专业工具。
  • 通过 Chrome DevTools Protocol 提供 Core Web Vitals 分析和响应式设计测试能力。
  • 安装前建议确认权限范围和维护状态,避免不必要的联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Chrome DevTools Testing Skill

Overview

This skill enables automated Chrome browser testing and performance analysis using the Chrome DevTools Protocol (CDP) via the chrome-devtools-mcp server. It provides access to 27 professional-grade tools for web application testing, performance measurement, accessibility validation, and browser automation.

Key capabilities:

  • Performance analysis with Core Web Vitals (INP, LCP, CLS)
  • Network monitoring and HAR export
  • Accessibility tree inspection
  • Responsive design testing
  • Browser automation (form filling, navigation, interaction)
  • Multi-tab and frame management
  • Device and network condition emulation

Browser support: Chrome/Chromium only (stable, beta, dev, canary channels)

Node.js requirement: v20.19 or newer

Quick Start

Installation

# Add to Claude Code via CLI
claude mcp add chrome-devtools npx chrome-devtools-mcp@latest

# Verify installation
claude mcp list

Basic configuration

{
  "mcpServers": {
    "chrome-devtools": {
      "command": "npx",
      "args": [
        "chrome-devtools-mcp@latest",
        "--isolated=true",
        "--viewport=1920x1080"
      ]
    }
  }
}

Important notes

  • Browser auto-starts on first tool use (not on MCP connection)
  • Use --isolated=true for security (creates temporary user data directories that auto-cleanup)
  • Default behavior shares user data directory across sessions and does NOT clear between runs
  • All browser content is exposed to MCP clients - avoid sensitive data

Current Core Web Vitals (as of March 12, 2024)

Three official metrics measured at 75th percentile of page loads:

  1. Interaction to Next Paint (INP) - Replaced FID on March 12, 2024

- Good: ≤ 200ms - Measures: Input delay + processing time + presentation delay - Requires: Real user interactions (field data only)

  1. Largest Contentful Paint (LCP)

- Good: ≤ 2.5 seconds - Measures: Main content loading performance

  1. Cumulative Layout Shift (CLS)

- Good: ≤ 0.1 - Measures: Visual stability

Total Blocking Time (TBT) is NOT a Core Web Vital - it's a lab proxy metric for INP.

Common Use Cases

1. Performance Testing Workflow

Measure Core Web Vitals and analyze performance bottlenecks:

1. Start performance trace: performance_start_trace
2. Navigate to target URL: navigate_page
3. Wait for page load: wait_for
4. Stop trace and get metrics: performance_stop_trace
5. Analyze specific insights: performance_analyze_insight

Metrics captured:

  • INP (Interaction to Next Paint)
  • LCP (Largest Contentful Paint) with breakdown
  • CLS (Cumulative Layout Shift)
  • TBT (Total Blocking Time - lab proxy)
  • Document latency analysis

Example:

performance_start_trace with reload=true, autoStop=false
wait_for page to stabilize
performance_stop_trace
performance_analyze_insight with insightName="LCPBreakdown"

2. Network Monitoring and HAR Export

Capture all HTTP requests/responses with timing details:

1. Navigate to URL: navigate_page
2. List all network requests: list_network_requests
3. Get specific request details: get_network_request

Captured data:

  • Headers, bodies, cookies
  • Timing (DNS, connect, SSL, wait, receive)
  • Resource types (document, stylesheet, image, script, xhr, fetch)
  • Security details (protocol, cipher suite)

Export as HAR: Use list_network_requests to generate HTTP Archive v1.2 format

Filter requests:

list_network_requests with resourceTypes=["xhr", "fetch", "document"]
list_network_requests with pageSize=50, pageIdx=0

3. Accessibility Validation

Inspect accessibility tree for WCAG compliance:

1. Navigate to page: navigate_page
2. Take accessibility snapshot: take_snapshot
3. Interact with elements using UIDs

Snapshot provides:

  • Unique element identifiers (UIDs)
  • Accessibility roles, names, properties
  • ARIA attributes and computed roles
  • Screen reader compatibility analysis
  • Semantic structure validation

Example workflow:

take_snapshot verbose=false (returns text-based a11y tree)
# Identify element UIDs from snapshot
click uid="element-123"
fill uid="input-456" value="test data"

4. Responsive Design Testing

Test across devices and network conditions:

1. Resize viewport: resize_page width=375 height=667
2. Emulate network: emulate_network throttlingOption="Slow 3G"
3. Emulate CPU: emulate_cpu throttlingRate=4
4. Take screenshot: take_screenshot fullPage=true

Device emulation options:

  • Viewport dimensions and device scale factor
  • Network conditions: Offline, Slow 3G, Fast 3G, Slow 4G, Fast 4G
  • CPU throttling: 1-20x slowdown
  • Touch emulation with max touch points

Screenshot formats: PNG, JPEG, WebP (with quality settings)

5. Browser Automation

Automated form filling, navigation, and interaction:

1. Take snapshot to get element UIDs: take_snapshot
2. Fill form fields: fill_form elements=[{uid, value}, ...]
3. Click buttons: click uid="submit-button"
4. Handle dialogs: handle_dialog action="accept"
5. Wait for results: wait_for text="Success"

Interaction tools:

  • click (single/double-click)
  • fill (input fields, textareas, selects)
  • fill_form (multiple fields at once)
  • hover (mouse hover)
  • drag (drag-and-drop)
  • upload_file (file inputs)
  • handle_dialog (alerts, confirms, prompts)

Navigation tools:

  • navigate_page (URLs, reload)
  • navigate_page_history (back/forward)
  • wait_for (text appearance, conditions)

6. Multi-Tab Management

Work with multiple pages and frames:

1. List open pages: list_pages
2. Create new page: new_page url="https://example.com"
3. Switch context: select_page pageIdx=1
4. Close pages: close_page pageIdx=2

Frame handling:

  • Automatic attachment to child frames and workers
  • Frame tree structure inspection
  • Session persistence across navigation

Advanced Workflows

Performance Analysis with Device Emulation

1. resize_page width=390 height=844 (iPhone 14 Pro)
2. emulate_network throttlingOption="Fast 4G"
3. emulate_cpu throttlingRate=4
4. performance_start_trace reload=true
5. performance_stop_trace
6. performance_analyze_insight insightName="DocumentLatency"

Network Analysis with Filtering

1. navigate_page url="https://example.com"
2. list_network_requests resourceTypes=["script", "fetch", "xhr"]
3. Filter by: pageSize=100, pageIdx=0, includePreservedRequests=true
4. get_network_request reqid=123 (detailed timing/headers/body)

Accessibility Testing Pattern

1. navigate_page url="https://example.com"
2. take_snapshot verbose=true (full a11y tree with all properties)
3. Validate: roles, names, ARIA attributes, relationships
4. Test interactions: click, fill, keyboard navigation via UIDs

Cross-Browser Viewport Testing

1. Define breakpoints: [320, 768, 1024, 1920]
2. For each breakpoint:
   - resize_page width=X height=Y
   - take_screenshot format="png" quality=90
   - take_snapshot (verify accessibility)
3. Compare layouts and a11y across sizes

Complete Tool Reference

27 tools available across 6 categories:

Input automation (8): click, drag, fill, fill_form, handle_dialog, hover, press_key, upload_file

Navigation (7): close_page, list_pages, navigate_page, navigate_page_history, new_page, select_page, wait_for

Emulation (3): emulate_cpu, emulate_network, resize_page

Performance (3): performance_analyze_insight, performance_start_trace, performance_stop_trace

Network (2): get_network_request, list_network_requests

Debugging (4): evaluate_script, get_console_message, list_console_messages, take_screenshot, take_snapshot

For detailed tool parameters and examples, see TOOLS.md

For complete workflow patterns, see WORKFLOWS.md

For Core Web Vitals thresholds and measurement guide, see METRICS.md

Configuration Options

Connection flags

  • --browserUrl, -u <string> - Connect to running Chrome instance (port forwarding)
  • --wsEndpoint, -w <string> - WebSocket endpoint for Chrome connection
  • --wsHeaders <JSON> - Custom headers for authenticated WebSocket connections

Browser configuration

  • --headless <boolean> - Run in headless mode (default: false)
  • --executablePath, -e <string> - Path to custom Chrome executable
  • --channel <string> - Chrome channel: stable, canary, beta, dev (default: stable)
  • --viewport <string> - Initial viewport size (format: WIDTHxHEIGHT, e.g., 1280x720)

Security and isolation

  • --isolated <boolean> - RECOMMENDED: Creates temporary user-data-dir, auto-cleanup (default: false)
  • --user-data-dir <string> - Custom user data directory
  • --acceptInsecureCerts <boolean> - Ignore certificate errors (SECURITY RISK - dev/test only)

Network

  • --proxyServer <string> - Proxy server configuration

Debugging

  • --logFile <string> - Path for debug logs (set DEBUG=* env var for verbose logs)

Additional

  • --chromeArg <string> - Additional Chrome arguments (repeatable)

View all options: npx chrome-devtools-mcp@latest --help

Production Configuration Examples

Secure isolated testing

{
  "mcpServers": {
    "chrome-devtools": {
      "command": "npx",
      "args": [
        "chrome-devtools-mcp@latest",
        "--isolated=true",
        "--headless=true",
        "--viewport=1920x1080",
        "--channel=stable"
      ]
    }
  }
}

Connect to external Chrome instance

# Launch Chrome with remote debugging
google-chrome --remote-debugging-port=9222 --user-data-dir=/tmp/chrome-profile

# Get WebSocket endpoint
curl http://127.0.0.1:9222/json/version | jq -r '.webSocketDebuggerUrl'
{
  "mcpServers": {
    "chrome-devtools": {
      "command": "npx",
      "args": [
        "chrome-devtools-mcp@latest",
        "--wsEndpoint=ws://127.0.0.1:9222/devtools/browser/<id>"
      ]
    }
  }
}

Production with logging

{
  "mcpServers": {
    "chrome-devtools-prod": {
      "command": "npx",
      "args": [
        "chrome-devtools-mcp@latest",
        "--browserUrl=http://127.0.0.1:9222",
        "--isolated=true",
        "--logFile=/var/log/chrome-devtools-mcp.log"
      ],
      "env": {
        "DEBUG": "*"
      }
    }
  }
}

Security Considerations

Data exposure warning

Official Chrome DevTools MCP security notice:

"chrome-devtools-mcp exposes content of the browser instance to the MCP clients allowing them to inspect, debug, and modify any data in the browser or DevTools. Avoid sharing sensitive or personal information that you don't want to share with MCP clients."

Best practices

  1. Use isolated mode for sensitive workflows

- --isolated=true creates temporary user data directories - Automatically cleaned after browser closes - Prevents data persistence between sessions

  1. Certificate handling caution

- --acceptInsecureCerts is a security risk - Only use in development/testing environments - Never use with sensitive data

  1. User data directory management

- Default directory shared across all instances - Not cleared between runs - Contains cookies, cache, browsing history - Use --isolated or custom --user-data-dir for control

  1. WebSocket authentication

- Use --wsHeaders for authenticated connections - Example: --wsHeaders='{"Authorization":"Bearer token"}' - Only works with --wsEndpoint

Technical Constraints

Verified limitations

  1. Browser support: Chrome/Chromium only (no Firefox, Safari, Edge legacy)
  2. Node.js requirement: v20.19 or newer (latest maintenance LTS)
  3. Browser lifecycle: Browser auto-starts on first tool use, NOT on MCP server connection
  4. Default persistence: User data directory persists between runs unless --isolated=true is used
  5. Permission requirements:

- macOS Full Disk Access may be required for some MCP clients - Chrome needs permission to create its own sandboxes - May need to disable MCP client sandboxing or use external Chrome instance

  1. Screenshot formats: Specified format (JPEG/PNG) for initial capture, final output uses WebP with PNG fallback
  2. Tool availability: All 27 tools available immediately after connection; no progressive unlocking

Resources and Documentation

Official sources

Core Web Vitals

Tools

Related Skill Files

  • WORKFLOWS.md - Detailed workflow patterns and multi-step processes
  • METRICS.md - Complete Core Web Vitals thresholds and measurement guide
  • TOOLS.md - Comprehensive tool parameter reference and examples

Version Information

  • MCP Server Version: v0.5.1 (October 17, 2025)
  • Tool Count: 27 tools
  • Core Web Vitals Update: INP replaced FID on March 12, 2024
  • Current Metrics: INP, LCP, CLS (TBT is lab proxy, not Core Web Vital)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

26.73%
按下载量换算74

OpenCode

26.27%
按下载量换算72

Antigravity

20.16%
按下载量换算55

windsurf

14.18%
按下载量换算39

Cursor

8.26%
按下载量换算23

Gemini CLI

3.29%
按下载量换算9

安全审计

暂无安全审计结果可展示。

权限和风险

操作浏览器

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills