Skip to content

Instantly share code, notes, and snippets.

@avrahamappel
Last active June 3, 2022 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avrahamappel/4e32196a54ee41819860463a960a1841 to your computer and use it in GitHub Desktop.
Save avrahamappel/4e32196a54ee41819860463a960a1841 to your computer and use it in GitHub Desktop.
Make browser tab blank after X minutes
(function () { let minutes = parseInt(prompt("How many minutes?", "15")); setTimeout(() => document.body.innerHTML = '', minutes * 60 * 1000); })()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment