Building Coating Tool for Chrome Making Tools

I want to extend the dev tools in chrome to support "what-just-ran". Something like this - you press the record button, do something on the web page and stop recording. In the dev tools, it should show which part of the code works as dynamic code coverage. From what I read in the docs, there is no direct path. I hacked using dev-front-end (the source for developer tools), setting breakpoints on each line and finding which line is executed, on how far I can go. Is this project possible using modern chrome extension APIs or even front end dev changes?

+7
source share
2 answers

JS heatmap profiler slash coverage tool does this by preprocessing JavaScript.

JS heatmap by Peter van der Zee

+1
source

Timeline screenshot
(source: google.com )

The timeline has it all plus rendering and loading information. Timeline data is accessible through the remote debugging API , as well as any other data that DevTools has.

0
source

All Articles