WeSearch

I needed to capture network logs from a colleague's browser without asking them to open DevTools — so I built this. Here's how it works..

·1 min read · 0 reactions · 0 comments · 2 views
#chrome extension#network logging#har exporter#debugging tool#web development
I needed to capture network logs from a colleague's browser without asking them to open DevTools — so I built this. Here's how it works..
⚡ TL;DR · AI summary

A developer created a Chrome extension called Network Logger - HAR Exporter to capture network logs from a colleague's browser without requiring DevTools to be opened. The tool records network requests across all tabs and exports them as HAR files for debugging. Unlike DevTools, it doesn't need to be active beforehand and works independently of tab focus. It aims to simplify log sharing and streamline troubleshooting in collaborative environments.

Original article
DEV Community
Read full at DEV Community →
Opening excerpt (first ~120 words) tap to expand

try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3902854) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } @themindfuel@ Posted on Apr 28 I needed to capture network logs from a colleague's browser without asking them to open DevTools — so I built this. Here's how it works.. Network Logger - HAR Exporter (Chrome Extension) Capture network requests across all tabs and export as a HAR file — no DevTools needed. Perfect for debugging and sharing logs. Key difference from DevTools: DevTools must be open and on the correct tab before the request fires.

Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV Community.

Anonymous · no account needed
Share 𝕏 Facebook Reddit LinkedIn Threads WhatsApp Bluesky Mastodon Email

Discussion

0 comments

More from DEV Community