Bring Chrome Debugger window to front on breakpoint

In VSCode when you are debugging a nodejs app, if you hit a breakpoint, VSCode window comes to the front of all other applications. Is it possible to add this option in Chrome Debug Tools?

OSX 13.0.1

1 Like

Yes, absolutely can do it.
You can following some ways:

  • Config webpack to devtool: isDevelopment && ‘eval-source-map’
  • Use syntax debugger;
  • Use breakpoint on Source tab
1 Like

But it doesn’t focus the Dev Tools window on break

1 Like