Skip to content

Instantly share code, notes, and snippets.

@arafathusayn
Created March 8, 2017 09:06
Show Gist options
  • Save arafathusayn/c3a1ee032fc19f3f2f334022dac68ca0 to your computer and use it in GitHub Desktop.
Save arafathusayn/c3a1ee032fc19f3f2f334022dac68ca0 to your computer and use it in GitHub Desktop.
Blur Youtube Thumbnails and Account Avatars
/*
Install from here: https://userstyles.org/styles/139876/youtube-thumbnails-blur-and-unblur
*/
@-moz-document domain("www.youtube.com") {
div[class*="thumb"] img {
filter: blur(5px);
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5);
-ms-filter: blur(5px);
}
div[class*="thumb"]:hover img {
filter: blur(0px);
-webkit-filter: blur(0px);
-moz-filter: blur(0px);
-o-filter: blur(0px);
-ms-filter: blur(0);
-ms-filter: blur(0px);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment