Created
November 23, 2013 10:41
-
-
Save arturi/7613099 to your computer and use it in GitHub Desktop.
## Description
Darken is a very simple javascript bookmarklet that dims brightness of you browser screen for night reading. Tested in Chrome and Safari on Mac and iOS. Darken is only able to dim content of a browser window, so the address bar and buttons will remain bright (however on an iPhone you can work around it by going full-screen). This …
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(){document.getElementsByTagName("html")[0].style.cssText = "filter: brightness(0.4); -webkit-filter: brightness(0.4); -moz-filter: brightness(0.4); -webkit-transform: translateZ(0);";})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment