Possible Duplicate:
“Must-Have” Firefox Addons?
I've found some browser plugins can be extremely helpful in client side web development. I'm curious about what everybody else uses.
browse the complete firefox web-dev plugin list
OK, we've got some must haves:
- ABP: Ad Block Protection. Not a web dev plugin, but I don't see web ads anymore, so everything goes faster.
- Firebug: Great for inspecting the dom, editing html and css, debugging, etc. Hugely popular.
- Chris Pedrick's web developer toolbar: offers easy access to important features, like viewing cookies, viewing the javascript generated source of a page, disabling javascript or images, etc.
Some others:
- javascript library detector. It shows you what libraries were used on the page, which can be great if you're trying to figure out how the page does something. (SO's fancy effects use jQuery 1.3.2)
- IE tab. Allows you to use the built in IE rendering engine in FF. I definitely would not use it for any serious page testing, you should use the real IE 6/7/8. But this can give you a quick idea of how a page might look in IE, and sometimes when people report page display bugs in IE I can replicate them instantly from FF.
- Codeburner. Extends firebug by allowing you to access reference material on HTML elements and CSS styles right in firebug. Good for beginners.