Bookmarklet to highlight a tab after 30 minutes. Blinks the title when the timer has run out.
Last active
December 24, 2015 14:19
-
-
Save philz/6811680 to your computer and use it in GitHub Desktop.
Bookmarklet to highlight a tab after 30 minutes.
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
| <a href="javascript:function(){var t1 = document.title; var t2 = "..."; var swap = function() { if (document.title === t1) { document.title = t2; } else { document.title = t1; } }; setTimeout(function() { setInterval(swap, 1000); }, 30*60*1000);}()">Drag this to your bookmarks bar.</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment