ワンクリックで
devtools
Use CDP at localhost:9222 to test/debug websites, automate browser tasks
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use CDP at localhost:9222 to test/debug websites, automate browser tasks
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
ALWAYS follow this style when writing Python / JavaScript code
To select, design, annotate, and verify a data visualization (chart, map, or table).
ALWAYS follow this design guide for any front-end work
Use this for non-trivial analysis, design, diagnosis, review, strategy, or judgment. Skip it for simple lookups, mechanical rewrites, and pure tone tasks.
For CloudFlare development, deployment, e.g. Python CloudFlare Workers
Use when creating demos or POCs
| name | devtools |
| description | Use CDP at localhost:9222 to test/debug websites, automate browser tasks |
Use CDP at localhost:9222.
Use agent-browser (simpler than playwright) where helpful.
Playwright is installed globally via export PLAYWRIGHT_BROWSERS_PATH="${HOME}/.local/share/playwright-browsers"; uv install playwright; playwright install --with-deps chromium firefox webkit.
Capabilities:
uvx markitdown file.htmlpage.on("console", msg => console.log("LOG:", msg.type(), msg.text())). Use CDP's Console.enable for replay(page||locator).screenshot({ path, fullPage, type, quality, ... })context.tracing.start({ screenshots: true, snapshots: true }) ... context.tracing.stop({ path: "trace.zip" })blob: URL created in the page context. CSP may block inline scripts.
url = URL.createObjectURL(new Blob([code], { type: "text/javascript" }))<script src="blob:...">page.addScriptTag({content: ...}) on CSP-heavy sites (e.g. WhatsApp, Google apps).Uses:
Tips: