Reviews for Transparent standalone images
Transparent standalone images by Jared W
3 reviews
- Rated 3 out of 5by BrunoGF, 3 years agoHow can I get this extension to work?? I never see an option to use it when I click (or right click) an image..
- Rated 3 out of 5by Firefox user 14386494, 3 years agoYou don't need an extension for this! Always check if you can do simple changes with a CSS script, and you can for new tab image transparency: https://github.com/MrOtherGuy/firefox-csshacks/blob/master/content/standalone_image_page_mods.css
In your search bar, type in "about:support", find and open "Profile directory", create a "chrome" folder, create userContent.css there and add this to it:
@-moz-document regexp("(.*\.(apng|png|jpg|jpeg|gif|webp|avif|ico|bmp|APNG|PNG|JPG|JPEG|GIF|WEBP|AVIF|ICO|BMP)([\?#].*)*$)|(^data:image/.*)"){
@media not print {
img.transparent:only-child{
background: none !important;
}
}
}