Created
November 17, 2017 00:47
-
-
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
This file contains 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
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