browser-debugging
Chrome DevTools MCP ile browser debugging. Console, network, performance, DOM analizi.
npx skills add vibeeval/vibecosystem --skill browser-debugging --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Browser Debugging (Chrome DevTools MCP) ## Chrome DevTools MCP Setup ### Kurulum ```bash # NPM ile npm install -g @anthropic/chrome-devtools-mcp # veya npx ile (kurulum gerektirmez) npx @anthropic/chrome-devtools-mcp ``` ### MCP Config (~/.mcp.json) ```json { "mcpServers": { "chrome-devtools": { "command": "npx", "args": ["-y", "@anthropic/chrome-devtools-mcp"], "env": { "CHROME_DEVTOOLS_PORT": "9222" } } } } ``` ### Chrome'u Debug Modunda Baslat ```bash # macOS /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome \ --remote-debugging-port=9222 \ --user-data-dir=/tmp/chrome-debug # Linux google-chrome --remote-debugging-port=9222 --user-data-dir=/tmp/chrome-debug # Headless mod google-chrome --headless --remote-debugging-port=9222 ``` ## Console Log Okuma ve Analiz ### Console Mesajlarini Yakala ``` devtools.get_console_logs({ level: "error", // log | warn | error | info | debug limit: 50, clear_after: false }) ``` ### Console Mesaj Analizi | Seviye | Anlam | Aksiyon | |--------|-------|---------| | error | Runtime hatasi | HEMEN fix et | | warn | Potansiyel sorun | Incele, gerekiyorsa fix | | info | Bilgi mesaji | Debug icin kullan | | log | Debug output | Temizle (pro
- Chrome DevTools MCP Setup
- Kurulum
- MCP Config (~/.mcp.json)
- Chrome'u Debug Modunda Baslat
- Console Log Okuma ve Analiz
- Console Mesajlarini Yakala
- Console Mesaj Analizi
- Yaygin Console Hatalari
- Network Request Izleme
- Request'leri Listele
- Request Detayi
- Network Analiz Tablosu
- Yaygin Network Sorunlari
- Performance Profiling
NPM ile npm install -g @anthropic/chrome-devtools-mcp veya npx ile (kurulum gerektirmez) npx @anthropic/chrome-devtools-mcp macOS Linux google-chrome --remote-debugging-port=9222 --user-data-dir=/tmp/chrome-debug Headless mod google-chrome --headless --remote-debugging-port=9222
What does the browser-debugging skill do?
Chrome DevTools MCP ile browser debugging. Console, network, performance, DOM analizi.
How do I install it?
Run `npx skills add vibeeval/vibecosystem --skill browser-debugging --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From vibeeval/vibecosystem, a repository with 521 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
