30
loading...
This website collects cookies to deliver better user experience
document.designMode = "on"
. This allows you to add elements directly in your browser.settings
, and tick Show user agent shadow dom
within the Elements
section. This will allow you, for instance, to break down HTML 5 video
into its sub-elements.* { border: 1px solid red; }
to set a red border around all page elements, allowing you to identify off page elements.manifest.json
is loading properly.debugger;
in your javascript file. Upon running this the Sources tab will automatically open.debugger
basically sets breakpoints in our code. Either:
debugger
then use the step over functions
button to go through your code line by line; orplay
button. This will just pause on exceptions and debugger break points.show memory timeline
and filter for just the JS memory heap.heap snapshot
option shows a snapshot over the time period it takes your site to load.allocation instrumentation on timeline
option gives you a visual graph as time progresses.CMD + Shift + P
. I use it to switch on/off dark mode for instance.30