I've found the official Chrome DevTools Debugger API for JavaScript and it's domains, like Debugger domain.
The thing is, the docs aren't that thoroughly describing the example usage of the API, so it's kinda not that easy to write a method which would hook into debugger's function execution step-by-step and log all the functions call stack until some point or the end of whole chain of executions.
What I want to achieve here is just log all the executions steps "in fly", without needing to pause for every new method call or loop inside method.
Basically I'm planning on writing small custom execution frames recorder.
Anyone used the chrome.debugger for creating methods/classess for SPA webapps, besides browser extensions?
DevToolrepresents?