Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save antonioJASR/10e9052215ce24ae30d56d94e01096ce to your computer and use it in GitHub Desktop.
Save antonioJASR/10e9052215ce24ae30d56d94e01096ce 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