Skip to content

Instantly share code, notes, and snippets.

@z-------------
Created June 13, 2014 00:25
Show Gist options
  • Save z-------------/0456c6a26d332505738f to your computer and use it in GitHub Desktop.
Save z-------------/0456c6a26d332505738f to your computer and use it in GitHub Desktop.
Fix readability on unreadable pages, typically ones that try to be artsy by using Helvetica as the body font.
var readableStyle = document.createElement("style");
readableStyle.innerHTML = "*,*:before,*:after {font-family:'Lucida Grande',Verdana,sans-serif !important}";
document.head.appendChild(readableStyle);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment