Created
November 11, 2024 15:53
-
-
Save jsit/a47aae03d7f4781d3c464b6db25a0faa to your computer and use it in GitHub Desktop.
Blur Trump UserStyle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==UserStyle== | |
@name BlurTrump | |
@description Add blur and grayscale filter to images of Trump | |
@version 0.1 | |
@match http://*/* | |
@match https://*/* | |
==/UserStyle== */ | |
[href*="trump" i] img, [src*="trump" i], [alt*="trump" i] { | |
filter: grayscale(1) blur(10px); | |
overflow: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment