Resize those embedded or inline images in Gmail so you don't have to scroll horizontally to download or reply. How annoying.
Resize Inline Images for Gmail by cummingsrob
Details
Authorcummingsrob
LicenseNo License
Categorymail.google.com
Created
Updated
Code size496 B
Code checksumf02deafc
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Resize Inline Images for Gmail
@version 20250225.16.45
@namespace https://userstyles.world/user/cummingsrob
@description Resize embedded or inline images in Gmail so you don't have to friggin' scroll horizontally to download or reply.
@author cummingsrob
@license No License
==/UserStyle== */
@-moz-document domain("mail.google.com") {
div[class^="ii"] > div img {
max-width: 100% !important;
height: auto !important;
}
}