Created
March 23, 2013 16:11
-
-
Save sauravtom/5228256 to your computer and use it in GitHub Desktop.
Simple bookmarklet to make reading mangas of mangafox less painful.V1
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
| javascript: (function () { | |
| var all = document.getElementsByTagName("div"); | |
| var viewer = document.getElementById("viewer").style; | |
| for (var i=0, max=all.length; i < max; i++) { | |
| all[i].style.visibility='hidden'; | |
| } | |
| viewer.visibility='visible'; | |
| viewer.position='absolute'; | |
| viewer.top='2px'; | |
| viewer.left='21%'; | |
| viewer.webkitFilter=" drop-shadow(13px 13px 20px black) grayscale(1) hue-rotate(210deg) sepia(0.8)"; | |
| viewer.zoom= "200%" | |
| }()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment