Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Show Javascript error count in Firefox without opening console

Now that Firebug has been subsumed into Firefox, how can I configure the browser to bring Javascript errors to my attention without having the console open all the time, as Firebug used to do by showing an error count on its toolbar icon?

like image 245
stovroz Avatar asked Nov 08 '22 03:11

stovroz


1 Answers

The Firefox DevTools provide a so-called "Developer Toolbar" aka GCLI (openable via Firefox menu > Developer > Developer Toolbar or Shift + F2), which displays the number of errors on the page (besides providing many useful commands):

Errors shown in GCLI

Update:

The DevTools team obviously plans to remove the Developer Toolbar, because of low usage and because it's unmaintained and for most of it's features are available somewhere else.

There is no replacement yet for the error count, though, but a comment on the related bug report indicates that it will be added back.

like image 193
Sebastian Zartner Avatar answered Nov 14 '22 23:11

Sebastian Zartner