Мережевий монітор захоплює і показує кожен мережевий запит поточної сторінки в реальному часі.
Вкладка Network у Chrome DevTools потужна, але громіздка — вона займає значну частину екрана, скидається під час переходу на іншу сторінку і змушує вас переключатися від самого контенту сторінки. Network Monitor надає основні функції моніторингу мережі в легкій плаваючій панелі, що розташовується поверх сторінки.
Він перехоплює запити XHR та Fetch, а також відстежує завантаження ресурсів через Performance API, показуючи кожен мережевий запит у момент його виконання. Для кожного запиту відображається URL, HTTP-метод (GET, POST, PUT, DELETE), код статусу (з кольоровим маркуванням: зелений для 2xx, жовтий для 3xx, червоний для 4xx/5xx), розмір відповіді в байтах і тривалість у мілісекундах. Клацніть на будь-якому запиті, щоб розгорнути деталі: заголовки запиту, заголовки відповіді, тіло запиту, попередній перегляд тіла відповіді та розбивку за часом виконання.
Запити, надіслані через Beacon API (їх зазвичай використовують для аналітичних «пінгів» безпосередньо перед вивантаженням сторінки), теж фіксуються, хоча зазвичай їх складно відстежити, оскільки вони спрацьовують саме під час переходу на іншу сторінку. Це окремий інструмент від WebSocket Inspector — Network Monitor зосереджений на трафіку HTTP-запитів і відповідей, тоді як WebSocket-з'єднання та їхні фрейми охоплює спеціальний інструмент WebSocket Inspector, тож кожна панель залишається сфокусованою й зручною для читання, а не змішує два зовсім різні типи трафіку в один шумний потік.
Every network request appears in the panel as it happens — page loads, API calls, lazy-loaded resources, and background fetches. The feed updates in real-time with no manual refresh needed.
Click any request to see full details: request URL, method, headers, payload (for POST/PUT), response headers, response body preview (JSON auto-formatted), status code, size, and timing breakdown.
Filter requests by type: XHR/Fetch (API calls), JS (scripts), CSS (stylesheets), IMG (images), Font (web fonts), or All. Isolate API traffic from resource loading to focus on what matters.
Status codes are color-coded for instant recognition: green for 2xx (success), yellow for 3xx (redirects), red for 4xx (client errors) and 5xx (server errors). Failed requests are immediately visible.
Each request shows the response size (in KB) and total duration (in milliseconds). Identify slow API calls, oversized resources, and unnecessary requests that impact page performance.
A summary bar shows total request count and combined size for all captured requests. Filter the summary to see totals per type — how much bandwidth is spent on scripts vs images vs API calls.
Watch XHR/Fetch requests to verify your frontend is calling the correct API endpoints with the right parameters. Click to inspect request payloads and response bodies — catch mismatched data formats instantly.
Red 404 and 500 entries immediately highlight broken resources or failing API calls. See which URLs are failing, when they fail, and what error response the server returns.
Sort by duration to find the slowest requests. Sort by size to find the largest resources. The summary totals show the full bandwidth picture — is the page making too many requests or downloading too much data?
See what network requests the page makes in the background — analytics pings, heartbeat calls, polling requests, lazy-loaded resources. Understand the full network activity beyond what's visible to the user.
Filter requests and check which domains are being contacted. Identify third-party scripts making unexpected network calls — tracking pixels, data collection, or external API calls you didn't know about.
Open the DevSuite Pro floating dock and click the Network Monitor icon. A panel opens and begins capturing network requests immediately.
Use the page normally. Every network request appears in the feed as it's made — API calls, resource loads, and background fetches are all captured.
Click the type filters (XHR, JS, CSS, IMG, Font) to narrow the view. Show only API calls to debug data fetching, or only images to check asset loading.
Click any request row to expand its details: URL, headers, payload, response body, status code, size, and timing.
Red status codes (404, 500) indicate failed requests. Slow durations flag performance bottlenecks. Large sizes suggest resources that need optimization.
Встановіть DevSuite Pro безкоштовно та отримайте понад 64 інструментів розробника