Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add parisgroup-ai/imersao-ia-setup --skill e2e-chrome-devtoolsgit clone --depth 1 https://github.com/parisgroup-ai/imersao-ia-setupWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/e2e-chrome-devtools)<a href="https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/e2e-chrome-devtools"><img src="https://agentmods.dev/badge/skills/parisgroup-ai/imersao-ia-setup/e2e-chrome-devtools/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/e2e-chrome-devtools"><img src="https://agentmods.dev/badge/skills/parisgroup-ai/imersao-ia-setup/e2e-chrome-devtools.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00161 | $0.01808 |
| Opus 5 | $0.00081 | $0.00904 |
| Sonnet 5 | $0.00032 | $0.00362 |
| Haiku 4.5 | $0.00016 | $0.00181 |
Grade A, and why
e2e-chrome-devtools scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 221 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Chrome DevTools Smoke Test
Run a structured visual smoke test against a running web application using the Chrome DevTools MCP server. This connects to the user's real Chrome browser (with sessions, cookies, extensions) — unlike Playwright which opens a headless browser.
When to use this vs Playwright MCP
| Scenario | Tool |
|---|---|
| Debug app with logged-in session | Chrome DevTools MCP |
| Inspect console/network in real time | Chrome DevTools MCP |
| Lighthouse audit, perf trace, heap snapshot | Chrome DevTools MCP |
| Automated E2E test suite (CI) | Playwright MCP |
| Headless screenshot comparison | Playwright MCP |
Prerequisites
The chrome-devtools MCP server must be configured in .mcp.json:
{
"chrome-devtools": {
"command": "npx",
"args": ["chrome-devtools-mcp@latest", "--autoConnect"]
}
}
Chrome must be running with DevTools Protocol enabled. The --autoConnect flag
handles this automatically.
Workflow
Phase 1: Discovery
Understand what's available before testing.
- Load tools — Call
ToolSearchfor allmcp__chrome-devtools__*tools - List pages —
list_pagesto see what's already open in Chrome - Detect app — Check if the app is running locally (try common ports: 3000, 3700, 4000, 5173, 8080) or use a production URL already open in a tab
- Plan routes — Identify key pages to test based on the project structure (glob for
**/page.tsxor similar)
Phase 2: Page-by-Page Smoke
For each target page, execute this sequence:
navigate_page(url)
→ take_screenshot(filePath, fullPage: true)
→ take_snapshot() # a11y tree with UIDs
→ list_console_messages(types: ["error", "warn"])
→ list_network_requests(resourceTypes: ["fetch", "xhr"])
Save screenshots to /tmp/smoke-NN-description.png.
Key pages to test (adapt to the project):
- Landing / home page
- Login page
- Main dashboard (if logged in)
- A detail/form page
- A list/table page
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 221 lines · 161 tokens per session scan A bb4b355ae090
e2e-chrome-devtools is a skill published in the GitHub repository parisgroup-ai/imersao-ia-setup (1 stars, last pushed 28d ago), licensed MIT. It adds 161 tokens to every session and 1,808 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
browser-validator
Automatically validate implementations in real browsers after code is written or when user says "test this", "test what you built in the browser", "check it in a real browser", or "validate at the breakpoints". Uses Chrome DevTools MCP to test responsive breakpoints (320px, 768px, 1024px), check accessibility…
feature-acceptance
A browser-based acceptance testing process that compares an online implementation with a product requirements document and, when available, an HTML prototype. It records what is complete, partial, missing, or inconsistent, with screenshots and prioritized blockers.
test-site
Tests a deployed, activated Power Pages site at runtime using browser-based navigation, page crawling, and API request verification via Playwright. Use when the user wants to test, verify, or smoke-test their deployed site.
qa
Browser-based QA verification. Launches a real browser, navigates the app, clicks buttons, fills forms, and tests user flows. Works as a standalone skill or as a phase end condition in campaigns. Requires Playwright (optional dependency, graceful skip if not installed).
e2e-testing
Playwright-based end-to-end testing workflow.
playwright-cli
Automates browser interactions for testing and validating your own web applications using playwright-cli. Use when you need terminal-first browser control for navigation, form filling, screenshots, tracing, bound browser sessions, debugging, or generating Playwright test code. Only use against applications you own or…