vote up 3 vote down star
2

I know FireBug with YSlow has to be by far my personal favourite. I also use IE developer toolbar when forced to test pages in IE. Is there any other jewels out there hiding??

flag

duplicate of stackoverflow.com/questions/17561/… – Sam Hasler Nov 24 '08 at 18:47

closed as exact duplicate by Sam Hasler Nov 24 '08 at 18:47

8 Answers

vote up 10 vote down check

I use the Web Developer Extension for Firefox, has tons of useful options.

https://addons.mozilla.org/en-US/firefox/images/t/11916/943948800

Also like the Live HTTP Headers Extension.

link|flag
vote up 2 vote down

Well you already mentioned FireBug, so the next web-related tool I use a lot would be IE Tester (http://www.my-debugbar.com/wiki/IETester/HomePage).

It's a single browser that lets you use IE 5.5, 6, 7 and 8. It's not an "add-on", strictly speaking, but I think it still qualifies :)

link|flag
vote up 2 vote down

If you're on a Mac, quit Safari, and then cut and paste this into a Terminal window:

defaults write com.apple.Safari IncludeDebugMenu "YES"
link|flag
vote up 1 vote down

Selenium IDE - Acceptance testing has made my life so much more stress free.

link|flag
vote up 1 vote down

In Firefox, both Live Http Headers and User Agent Switcher are indispensable.

Although I work in a .NET shop, Firefox is my go-to browser, just based on the richness of the add-ons and stability of the core browser.

link|flag
vote up 0 vote down

For Internet Explorer, the IE Developer Toolbar, as you mentioned, is very very useful. It allows you to navigate through rendered HTML, and it will display the section on the screen (highlighted block). I consider it mission critical for debugging rendered HTML.

Also of great use is Fiddler. Fiddler is a HTTP Debugging Proxy which logs all HTTP traffic between your computer and the Internet. Fiddler allows you to inspect all HTTP Traffic, set breakpoints, and "fiddle" with incoming or outgoing data.

link|flag
vote up 0 vote down

It's not strictly an add-on, since it's included as part of the browser, but I've been finding Dragonfly[1] to be really useful.

It has all most of the features of FireBug and works out of the box in Opera.

[1] http://www.opera.com/dragonfly/

link|flag
vote up 0 vote down

I used to love fiddler but hated how hard it was to work with Firefox. Also, the whole not debugging of localhost (an early problem, may be fixed in most recent builds) was a big annoyance during local development.

Then I discovered FoxyProxy and life has been sweet ever since. I also use Firebug with YSlow. The only time I use IE is for final script/css/layout tests.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.