Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LargeCommandLine Firebug console in Google Chrome

I find Firebug's "LargeCommandLine" console option very convenient in some cases when you need to play with large pieces of code. Is there some way to have that exactly the same functionality in Google Chrome?

like image 649
disfated Avatar asked Feb 28 '26 22:02

disfated


1 Answers

Try CTRL-SHIFT-J - it is not EXACTLY the same as you demand, but programmed closely resembling firebug. You cannot get "exactly" the same, since that would mean running firebug itself, and that demands a Firefox infrastructure around it. You could include firefox-light into your page.

Also, you should have searched before posting: Firebug-like debugger for Google Chrome (scratch that - checked that Q from 2008 - seems like it's perfectly okay to ask again now)

HELP: http://code.google.com/chrome/devtools/docs/console.html

More Qs here: https://stackoverflow.com/questions/45965/how-do-i-use-the-javascript-console-in-google-chrome Firebug for Chrome

like image 140
Mörre Avatar answered Mar 02 '26 14:03

Mörre