- The
debug()
function
Create a breakpoint for a specified function under certain conditions
debug(postMessage, 'arguments[1] == "*"');
- The
monitorEvents()
function
Creates a logger for DOM events for monitoring purposes
monitorEvents(window, 'message');
- Modify the response for certain request. Enable override under the source tab and modify any resource. All requests related to this response will be overriden.
- You can search globally though all resources by pressing Ctrl + Shift + F
- Select multiple filters by holding the Ctrl key
- View dependencies of javascript files and documents by holding the Shift key
- Set user agent inside the Network Conditions tab to test for XSS
- The memory tab takes a snapshot of the memory heap. It contains all the strings in the memory. This is really useful for finding sensitive information.
- Use the Lighthouse tab to find vulnerabilities and outdates javascript libraries. Leave only the "best practices" category selected when generating a report.