How do I prevent Chrome developer tools from closing when the current browser window closes?

后端 未结 3 1998
失恋的感觉
失恋的感觉 2020-12-13 11:42

I\'m trying to use the chrome developer tools to debug an issue I\'m having with Twitter oauth.

When the oauth window appears, I open the developer tools to monitor

3条回答
  •  执念已碎
    2020-12-13 12:31

    Not a perfect solution, but you can add breakpoints on the events Window.close and unload by turning on the checkboxes at:

    Developer tools -> "Sources" tab -> Event Listener Breakpoints -> Window -> close
    

    And

    Event Listener Breakpoints -> Load -> unload
    

    Try to mark both and see which one works best for you

提交回复
热议问题