Skip to content

Instantly share code, notes, and snippets.

@kms70847
Last active July 26, 2019 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kms70847/3f48bb8e878799486e5a9fd6185c2b83 to your computer and use it in GitHub Desktop.
Save kms70847/3f48bb8e878799486e5a9fd6185c2b83 to your computer and use it in GitHub Desktop.
Gif Hider - replaces gifs with a black rectangle until you hover over them
javascript:(function(){style = document.createElement("style"); style.stype = "text/css"; style.innerHTML = 'img[src$=".gif"]{filter: brightness(0%);} img[src$=".gif"]:hover{filter: brightness(100%);}'; document.getElementsByTagName("HEAD")[0].appendChild(style);})();
style = document.createElement("style");
style.stype = "text/css";
style.innerHTML = 'img[src$=".gif"]{filter: brightness(0%);} img[src$=".gif"]:hover{filter: brightness(100%);}';
document.getElementsByTagName("HEAD")[0].appendChild(style);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment