Gmail – How to prevent large inline images from ruining Gmail layout

gmail

I receive lots of emails from people with screenshots, sometimes inlined, and they usually don't bother to scale the image. That means that I have to scroll to the right to get to the "Reply button", and looks generally ugly.

Is there a settings, a Chrome plugin, or a Greasemonkey script that will cause Gmail to resize the inline image if it's too large?

Best Answer

I use Stylebot for Chrome with the following css. I catches images and those ugly copy and paste tables people paste in periodically:

body.aAU blockquote {
    max-width: 90%;
}

body.aAU blockquote img{
    max-width: 100%;
    height:auto;
}