Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable [VM]XXX debugger in Chrome while debugging javascript

I want to debug a piece of javascript function line-by-line in Chrome browser, but everytime the chrome's 'Source' is opening in some [VM]XXX mode and I cannot see which exact line I'm debugging. It's just showing whole block of function, not letting me show line-by-line debug.

See the ss below: enter image description here

If you notice, the line-by-line debugging is not enabled. How can I see/debug line-by-line so that I can understand in which line exactly I'm right now, and which line causing error and why?? Is there any disable/enable for this [VM]XXX mode in chrome?

like image 219
Jerry Avatar asked Oct 18 '25 16:10

Jerry


1 Answers

Open an incognito window and make sure to disable all Chrome Extensions from running in incognito mode.

VMxxx tabs will be opened when Chrome Extensions are running. Instead of manually adding every files to the ignore list, you can disable the Chrome Extensions altogether.

[Blackbox Chrome VMXXX Scripts] - https://bugs.chromium.org/p/chromium/issues/detail?id=526239

like image 57
Spencer Lepine Avatar answered Oct 20 '25 06:10

Spencer Lepine