Skip to content

Instantly share code, notes, and snippets.

@cfjedimaster
Last active August 3, 2019 02:30
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cfjedimaster/ee4a2fd935318e29bd5364d71ea221c1 to your computer and use it in GitHub Desktop.
Save cfjedimaster/ee4a2fd935318e29bd5364d71ea221c1 to your computer and use it in GitHub Desktop.
Bookmarklet to gray scale images w/o alt.
javascript:(function(){
var css = document.createElement("style");
css.type = "text/css";
css.innerHTML = "img[alt=\"\"],img:not([alt]){ filter:grayscale(100%) }";
document.body.appendChild(css);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment