Created
June 13, 2014 00:25
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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