FFox broken image plug in

Posted by Phil on May 16, 2008 under Uncategorized | Be the First to Comment

Update: Brett/Burt has had a problem with this working on his box, so it may not be compatible with some plugins/add-ons.

One of the worst things that I run into is the prettifying that FireFox routinely does to webpages. When you surf, it’s a great idea, who likes to see broken image files? But when you are developing it gets in the way and can take an otherwise smashing page, and make it look… uh… well smashed. To get around this issue you used to have to install “greasemonkey” and then grab a user-script in order to force firefox into showing you broken image files. Well luckily those days are over as the other of the original script finally made it a standalone plug in. You can grab the plug in here.

I decided to do a little testing between FF2 (with the plug-in), FF3b5 (w/o plug-in), and a control IE7 (yes using IE7 as a control actually made me cringe, and may have given me a rash). I then created a generic html page with 6 broken img links in it. Here’s what we have:

  Broken image
  
   image
  Broken 
   
   

Now as you can see, I have some invalid html (missing alt tag), a couple alt tags with spaces, a few with the alt tags as spaces, you know some ugly things you should never do, and yet we find all the time. Render Time!! Let’s start off with our control.
IE rendering the broken html page

Here’s how FF3b5(w/o plugin) rendered this mess:
FireFox 3 beta 5 w/o plug-in rendering a broken html page.
Notice that it shows up with alt tags showing, and at first glance it looks like it picked up 4 of the 6 images. Upon closer inspection though, you’ll see it only saw 3 and prettified the page by removing the rest. Although I gotta say, seeing the alt text looking so plain really throws me off when I’m looking for where an image should be.

And lastly a render with FF2(with plug-in)
FF2 with plug-in rendering a broken html page
We can see exactly what the plug in did. It doesn’t show the alt text now, but you at least know that there should be *something* showing up on the page. When it’s all said and done, I’d say that this is worth the install, and quite a nice plug in.

Add A Comment