Google Chrome AutoRefresh Tabs
There are a number of plugins for Firefox that I use regularly to schedule regular refreshes on pages like Google Finance that I like to keep current throughout the day. In its infancy, Chrome does not have a built in way of doing this.
I found a nice solution here on a forum, posted by user gl0rfindel. Create a bookmark pointing to the url:
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())};
}
Clicking the bookmark will let you specify how regularly (in s) to refresh the current active tab.
This entry was posted on Tuesday, June 16th, 2009 at 10:16 am and is filed under Google. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
August 31st, 2009 at 4:09 am
Does not work with this website >>>>
http://ichart.finance.yahoo.com/z?s=^nsei&t=1d&q=c&l=off&z=l&p=e5,e20,e50,e100,p&a=m26-12-9,r14,ss,w14,p12,fs
Help please.
September 4th, 2009 at 2:02 am
thank yooou