Chrome自动刷新网页脚本

Posted 88223100

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Chrome自动刷新网页脚本相关的知识,希望对你有一定的参考价值。

脚本用于在Chrome的Console内定时刷新网页

timeout=prompt("Set timeout (Second):");
count=0
current=location.href;
if(timeout>0)
setTimeout(‘reload()‘,1000*timeout);
else
location.replace(current);
function reload(){
setTimeout(‘reload()‘,1000*timeout);
count++;
console.log(‘每(‘+timeout+‘)秒自动刷新,刷新次数:‘+count);
fr4me=‘<frameset cols=‘*‘>
<frame src=‘‘+current+‘‘/>‘;
fr4me+=‘</frameset>‘;
with(document){write(fr4me);void(close())};
}

 

以上是关于Chrome自动刷新网页脚本的主要内容,如果未能解决你的问题,请参考以下文章

打开chrome之后网页总是自动刷新,怎么解决

谷歌浏览器chrome怎样实现间隔自动刷新网页

chrome谷歌浏览器怎么设置网页定时自动刷新

谷歌浏览器chrome怎样实现间隔自动刷新网页

使用VScode配合chrome实现网页自动刷新

如何在页面刷新时保留 Chrome DOM 断点?