Blur the preview of images posted on the image board 4chan.
4chan preview blurrer by userman
Details
Authoruserman
LicenseCC Zero (Public Domain)
Category4chan.org
Created
Updated
Size465 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Many 4chan boards, even ones like /g/, often contain threads with suggestive and/or pornographic images, which can worsen the experience and make it impossible to browse from work or from school. This addon blurs the previews on 4chan by default. You can unblur them by hovering over them, or expanding them.
Source code
/* ==UserStyle==
@name boards.4channel.org - 24.10.2022, 18:06:49
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("boards.4channel.org"), domain("boards.4chan.org") {
/* Quelltext hier eingeben... */
.fileThumb > img[data-md5] {
filter: blur(15px);
}
img:hover {
filter: blur(0) !important;
}
}