I've found some browser plugins can be extremely helpful in client-side web development. I'm curious about what everybody else uses.
Feel free to browse the complete Firefox web-dev plugin list
Here are a list of common must-haves:
- Adblock Plus (ABP): 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: offering easy access 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. (StackOverflow's fancy effects use jQuery 1.3.2)
- IE tab. Allows you to use the built-in IE rendering engine in Firefox. I definitely would not use it for any serious page testing, you should use the real IE 6/7/8. This plugin helps to give you a quick idea of how a page might look in IE. When people report page display bugs in IE, you can replicate them instantly without having to leave Firefox.
- Codeburner. Extends Firebug by allowing you to access reference material on HTML elements and CSS styles right in Firebug. Good for beginners.
