Blur all images on tweets while on Twitter useful if you don't wanna see spoilers for something (You can reveal the images by hovering over them)
Blur Images on Twitter by codymkw
Mirrored from https://github.com/CodysNintendoNetwork/My-Userstyles/raw/master/Styles/Blur%20Images%20on%20Twitter/blur-images-on-twitter.user.css
Details
Authorcodymkw
LicenseNo License
CategoryTwitter
Created
Updated
Size485 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Blur Images on Twitter
@namespace github.com/CodysNintendoNetwork/My-Userstyles
@version 1.0.2
@description Blur all images on tweets while on Twitter useful if you don't wanna see spoilers for something (You can reveal the images by hovering over them)
@author CodyMKW
==/UserStyle== */
@-moz-document domain("twitter.com") {
[aria-label="Image"] {
filter: blur(15px);
}
[aria-label="Image"]:hover {
filter: blur(0px);
}
}