Awesome-copilot chrome-devtools
Expert-level browser automation, debugging, and performance analysis using Chrome DevTools MCP. Use for interacting with web pages, capturing screenshots, analyzing network traffic, and profiling performance.
install
source · Clone the upstream repo
git clone https://github.com/github/awesome-copilot
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/github/awesome-copilot "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/chrome-devtools" ~/.claude/skills/github-awesome-copilot-chrome-devtools && rm -rf "$T"
manifest:
skills/chrome-devtools/SKILL.mdsource content
Chrome DevTools Agent
Overview
A specialized skill for controlling and inspecting a live Chrome browser. This skill leverages the
chrome-devtools MCP server to perform a wide range of browser-related tasks, from simple navigation to complex performance profiling.
When to Use
Use this skill when:
- Browser Automation: Navigating pages, clicking elements, filling forms, and handling dialogs.
- Visual Inspection: Taking screenshots or text snapshots of web pages.
- Debugging: Inspecting console messages, evaluating JavaScript in the page context, and analyzing network requests.
- Performance Analysis: Recording and analyzing performance traces to identify bottlenecks and Core Web Vital issues.
- Emulation: Resizing the viewport or emulating network/CPU conditions.
Tool Categories
1. Navigation & Page Management
: Open a new tab/page.new_page
: Go to a specific URL, reload, or navigate history.navigate_page
: Switch context between open pages.select_page
: See all open pages and their IDs.list_pages
: Close a specific page.close_page
: Wait for specific text to appear on the page.wait_for
2. Input & Interaction
: Click on an element (useclick
from snapshot).uid
/fill
: Type text into inputs or fill multiple fields at once.fill_form
: Move the mouse over an element.hover
: Send keyboard shortcuts or special keys (e.g., "Enter", "Control+C").press_key
: Drag and drop elements.drag
: Accept or dismiss browser alerts/prompts.handle_dialog
: Upload a file through a file input.upload_file
3. Debugging & Inspection
: Get a text-based accessibility tree (best for identifying elements).take_snapshot
: Capture a visual representation of the page or a specific element.take_screenshot
/list_console_messages
: Inspect the page's console output.get_console_message
: Run custom JavaScript in the page context.evaluate_script
/list_network_requests
: Analyze network traffic and request details.get_network_request
4. Emulation & Performance
: Change the viewport dimensions.resize_page
: Throttling CPU/Network or emulating geolocation.emulate
: Start recording a performance profile.performance_start_trace
: Stop recording and save the trace.performance_stop_trace
: Get detailed analysis from recorded performance data.performance_analyze_insight
Workflow Patterns
Pattern A: Identifying Elements (Snapshot-First)
Always prefer
take_snapshot over take_screenshot for finding elements. The snapshot provides uid values which are required by interaction tools.
1. `take_snapshot` to get the current page structure. 2. Find the `uid` of the target element. 3. Use `click(uid=...)` or `fill(uid=..., value=...)`.
Pattern B: Troubleshooting Errors
When a page is failing, check both console logs and network requests.
1. `list_console_messages` to check for JavaScript errors. 2. `list_network_requests` to identify failed (4xx/5xx) resources. 3. `evaluate_script` to check the value of specific DOM elements or global variables.
Pattern C: Performance Profiling
Identify why a page is slow.
1. `performance_start_trace(reload=true, autoStop=true)` 2. Wait for the page to load/trace to finish. 3. `performance_analyze_insight` to find LCP issues or layout shifts.
Best Practices
- Context Awareness: Always run
andlist_pages
if you are unsure which tab is currently active.select_page - Snapshots: Take a new snapshot after any major navigation or DOM change, as
values may change.uid - Timeouts: Use reasonable timeouts for
to avoid hanging on slow-loading elements.wait_for - Screenshots: Use
sparingly for visual verification, but rely ontake_screenshot
for logic.take_snapshot