Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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