Skip to content

Instantly share code, notes, and snippets.

@steven2358
Created May 27, 2014 09:48
Show Gist options
  • Save steven2358/0cb344a8f6f0ebad9449 to your computer and use it in GitHub Desktop.
Save steven2358/0cb344a8f6f0ebad9449 to your computer and use it in GitHub Desktop.
Desaturation bookmarklet
javascript:(function(){
if (document.body.parentNode.style.webkitFilter==='grayscale(1)'){
document.body.parentNode.style.webkitFilter='grayscale(0)'
} else {
document.body.parentNode.style.webkitFilter='grayscale(1)';
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment