Wirebrowser: A CDP-Based Runtime Instrumentation Platform for JavaScript Debugging in Chrome
By
fcavallarin
If you only eat one bagel today, this is the bagel.
Summary
Wirebrowser is a runtime instrumentation platform for browsers built on Chrome DevTools Protocol (CDP) that enables deep JavaScript debugging and instrumentation without monkeypatching or source rewriting. It provides debugger-level control to observe, intercept, and modify JavaScript execution at runtime, including inside closures and non-global scopes that are normally inaccessible. The platform focuses on causality and execution flow rather than just inspection, positioning itself as a Frida-like tool specifically for JavaScript running in Chrome.
Key quotes
· 4 pulledWirebrowser is a runtime instrumentation platform for the browser, built on top of the Chrome DevTools Protocol (CDP).
Think Frida, but for JavaScript running in Chrome — no monkeypatching, no source rewriting, just debugger-level control.
Wirebrowser lets you observe, intercept, and modify execution at runtime, even inside closures and non-global scopes that are normally unreachable.
Unlike traditional tools, Wirebrowser focuses on causality and execution flow, not just inspection.
You might also wanna read
Web Inspector: Chrome Extension for Website Inspection, Debugging, and Element Extraction
Web Inspector is a Chrome extension that provides web developers and designers with a comprehensive toolkit for inspecting, debugging, and e
OpenBrowser-AI: Direct Browser Control for AI Agents via Chrome DevTools Protocol
OpenBrowser-AI is a tool that connects AI agents directly to web browsers using raw Chrome DevTools Protocol (CDP) without abstraction layer
