Skip to content

Instantly share code, notes, and snippets.

Created November 17, 2017 00:47
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 anonymous/50b501ff935894d8cba947725f104826 to your computer and use it in GitHub Desktop.
Save anonymous/50b501ff935894d8cba947725f104826 to your computer and use it in GitHub Desktop.
Running a script to output "Hello Easy Auto Refresh" to the console after each page refresh. Using Easy Auto Refresh https://chrome.google.com/webstore/detail/easy-auto-refresh/aabcgdmkeabbnleenpncegpcngjpnjkc
document.querySelector('body');
setTimeout(() => {
console.log('Hello Easy Auto Refresh!')
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment