Blur all images on Wikipedia unless you hover on them
Blur images on Wikipedia by hkc
Details
Authorhkc
LicenseNo License
Categorywikipedia
Created
Updated
Size466 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 Wikipedia
@version 20241111.14.21
@namespace https://userstyles.world/user/hatkidchan
@description Blur all images on Wikipedia unless you hover on them
@author hatkidchan
==/UserStyle== */
@-moz-document domain("wikipedia.org") {
.mw-file-element {
filter: blur(16px);
clip-path: inset(0px);
transition-property: filter;
transition-duration: 0.5s;
}
.mw-file-element:hover {
filter: none;
}
}