Skip to content

Instantly share code, notes, and snippets.

@eculver
Created January 2, 2010 01:02
Show Gist options
  • Star 32 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save eculver/267327 to your computer and use it in GitHub Desktop.
Save eculver/267327 to your computer and use it in GitHub Desktop.
Auto-refresh bookmarklet
// 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())};
}
@thapakazi
Copy link

๐Ÿ˜ฎ | ๐Ÿ™‡
thanks

@jerbear2008
Copy link

โ€Œโ€โ€Œโ€Cโ€โ€Œโ€Œโ€โ€Œโ€โ€โ€Œaโ€Œโ€โ€Œโ€โ€Œnโ€โ€โ€Œโ€Œโ€Œโ€Œโ€โ€Œโ€โ€โ€Œ'โ€โ€Œโ€Œโ€Œโ€Œโ€Œโ€tโ€Œโ€โ€โ€Œโ€Œโ€Œโ€Œโ€โ€Œโ€Œโ€Œ โ€Œโ€Œโ€Œโ€โ€Œโ€Œโ€โ€Œโ€Œbโ€โ€Œโ€Œโ€eโ€Œโ€Œโ€Œโ€Œโ€Œโ€Œlโ€โ€โ€Œโ€โ€Œโ€Œโ€Œโ€Œiโ€โ€โ€Œโ€โ€Œโ€Œโ€โ€Œโ€โ€โ€Œโ€Œโ€โ€Œeโ€Œโ€Œโ€Œโ€vโ€Œโ€Œโ€Œโ€Œโ€Œโ€Œeโ€โ€โ€Œโ€Œโ€Œโ€Œโ€โ€Œโ€Œโ€ โ€Œโ€Œโ€Œโ€Œโ€Œโ€Œโ€โ€โ€Œโ€tโ€โ€Œโ€โ€Œโ€โ€โ€Œhโ€Œโ€โ€Œโ€โ€Œโ€โ€โ€iโ€Œโ€Œโ€โ€โ€Œsโ€โ€โ€โ€Œโ€Œโ€โ€โ€Œโ€โ€ โ€Œโ€Œโ€Œโ€Œโ€โ€Œโ€โ€โ€Œsโ€Œโ€โ€tโ€โ€Œโ€โ€โ€Œโ€Œโ€โ€Œโ€โ€Œiโ€Œโ€โ€Œโ€Œโ€Œโ€Œโ€Œโ€Œโ€lโ€โ€Œโ€โ€Œlโ€Œโ€Œโ€Œโ€ โ€โ€Œโ€Œโ€โ€Œโ€โ€Œโ€โ€โ€wโ€Œโ€Œโ€โ€Œโ€Œโ€โ€oโ€Œโ€Œโ€โ€Œโ€โ€Œโ€Œโ€โ€Œโ€โ€rโ€โ€Œโ€Œโ€Œโ€kโ€Œโ€Œโ€Œโ€Œโ€Œโ€Œsโ€Œโ€โ€โ€โ€โ€Œโ€โ€Œโ€Œโ€โ€Œโ€โ€Œโ€Œโ€.

@pgross41
Copy link

pgross41 commented Mar 9, 2021

This is perfect

@m-asani
Copy link

m-asani commented Aug 2, 2022

Amazing !!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment