开发Chrome扩展程序...我想知道,我可以强制用户浏览器刷新当前页面吗?
答案 0 :(得分:4)
从背景页面:
chrome.tabs.getSelected(function(tab){
chrome.tabs.update(tab.id, {url: tab.url});
});
答案 1 :(得分:0)
可能不是。如果您描述为什么需要刷新它们,或许您可以通过其他方式找到所需的行为。
答案 2 :(得分:0)
是的,通过Javascript(这是一个屏幕上显示倒计时的例子):
var targetURL="http://www.wherever.com/about.php" /* or use about.php */
var countdownfrom=10
var currentsecond=document.redirect.redirect2.value=countdownfrom+1
function countredirect(){
if (currentsecond!=1){
currentsecond-=1
document.redirect.redirect2.value=currentsecond
}
else{
window.location=targetURL
return
}
setTimeout("countredirect()",1000)
}