Created
March 30, 2012 11:14
-
-
Save theophani/2250859 to your computer and use it in GitHub Desktop.
Y U NO RESIZE? bookmarklet
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
// put this in a bookmarklet | |
// click it as required | |
javascript: (function () { | |
var style = document.createElement('style'); | |
style.innerHTML = '* { -webkit-text-size-adjust:auto; }'; | |
document.head.appendChild(style); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you have never created a bookmarklet, here's one way to do it:
For more about making your own, I wrote a whole article about it:
http://rootcamp.io/?p=1