-
-
Save git2358/11e78b102b3dd0a096092731e62d2fe9 to your computer and use it in GitHub Desktop.
Auto-refresh bookmarklet
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
| // origin: http://www.google.com/support/forum/p/Chrome/thread?tid=1a37ccbdde5902fd&hl=en | |
| javascript: | |
| timeout=prompt("Set timeout [s]"); | |
| current=location.href; | |
| if(timeout>0) | |
| setTimeout('reload()',1000*timeout); | |
| else | |
| location.replace(current); | |
| function reload(){ | |
| setTimeout('reload()',1000*timeout); | |
| fr4me='<frameset cols=\'*\'>\n<frame src=\''+current+'\'/>'; | |
| fr4me+='</frameset>'; | |
| with(document){write(fr4me);void(close())}; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment