show console button disabled in chrome - google-chrome-devtools

I am unable to make the console bigger inside chrome. I remember I was able to do this a while ago. Is there a way to enable this ? The enlarged console would look like a firebug console where I can enter more than one line of code at a time.

Hit esc to open the console and enable code entry once you have the dev tools open.

Related

Chrome devtools tab reopens the wrong source files after a refresh

When I use chrome to debug my angular project, I open files in the chrome sources by clicking Ctrl+P/O and entering part of the name. Problem is: when I reload, seems chrome keeps all the wrong files open... so if I debugged into another file (didn't close it! just lost focus) and then reload (like, after sources changed and compiled) chrome will close that file, and might even not remember it in the open recents dropdown... It's like someone sorted in reverse for some reason...
Is there a way to fix the wrong sorting order through settings or configuration somehow?
Am I the only one finding this not very smart/useful? Considering debugging in browser is a pain in the arse as it is, and unfortunately is the only/go-to option for debugging browser apps...

Disable auto focus to console when snippet runs

In Chrome Developer Tools, in the source tab when you run snippets with the Run button or Ctrl+Enter, devtools does auto focus to the console tab, so I cannot continue to do coding on the source tab efficiently. I googled about the solution and took a look the devtools preference but couldn't find a good resource. Thanks.

Remove anonymous debugger from Chrome Dev Tools

A while ago I was working on a webapp and for the purpose of debugging I've added a listener function directly in the console of Chrome Dev Tools and I've included a js debugger keyword in it to have a breakpoint there.
Now I can't get rid of that debugger and whenever I try inspecting the page, click on Select an element in the page to incspect it and I click anywhere on the page to take me to that node in the DOM structure I'm entering the breakpoint and I need to Continue script execution multiple times.
The debugged code looks like this:
I've tried triggering Never pause here option on each possible line, but it just opens a new VMxxxxx file. The breakpoint is not available in the Breakpoints list so I can't remove or uncheck it from there. Do you know how to get rid of it?
I was having the same issue, i found that one of my browser extentions was throwing the anonymous debugger. I solved the problem by disabling all my extentions, confirming the anonymous debugger issue went away and then reenabled one extention at a time.

Slow down chrome dev tool debugger reaction to my behavior

I am trying to debug in chrome dev tool. My form shows some weird validation error when I type something into the input field and then quickly click somewhere outside the field. I found the browser debugger is not able to catch my last click behavior and it becomes very difficult to debug where things go wrong. Is there a way to slow down the debugger's reaction?

CodeSandbox: Display codeline in console

How can you display the line of codes in the console in Codesandbox?
I was searching in the settings but couldn't find anything.
Assuming you're console.log()ing them, there's nothing else you need to do. Codesandbox will log whatever is inside a console.log() statement and show it to you in the console tab.
Your ad blocker may be the reason you don't see anything. Turn it off, or try running your sandbox in Chrome's Incognito mode (assuming you don't have an ad blocker enabled in Incognito mode.)