Skip to content

Instantly share code, notes, and snippets.

@philz
Last active December 24, 2015 14:19
Show Gist options
  • Select an option

  • Save philz/6811680 to your computer and use it in GitHub Desktop.

Select an option

Save philz/6811680 to your computer and use it in GitHub Desktop.
Bookmarklet to highlight a tab after 30 minutes.

Bookmarklet to highlight a tab after 30 minutes. Blinks the title when the timer has run out.

<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