我正在使用setTimeout,每次运行时都会调用自身来连续检查不同页面的内容,因为每个页面都是通过ajax加载的。似乎Facebook JS正在运行所有可能的setTimeout引用,并为每个渲染我的应用程序无用而调用clearTimeout。
有没有办法阻止我的setTimeout像Facebook的JS一样无助的小虫被压扁?
以下是我的代码,以便您可以查看正在进行的操作并根据需要测试您的解决方案:
ruleset a60x542 {
meta {
name "shun-the-facebook-likes"
description <<
shun-the-facebook-likes
>>
author "Mike Grace"
logging off
}
dispatch {
domain "facebook.com"
}
rule find_the_likes {
select when pageview "facebook\.com"
{
emit <|
KOBJ.a60x542.removeLikes = function() {
$K(".uiUfiLike, .like_link, .cmnt_like_link").remove();
var timeout = window.setTimeout(function() {
KOBJ.a60x542.removeLikes();
}, 4000);
console.log(timeout);
} // removeLikes()
KOBJ.a60x542.removeLikes();
|>;
}
}
}
答案 0 :(得分:0)
你确定FAcebook正在清除你的超时吗?
你的console.log有效吗?
您可以使用setInterval连续执行您的功能。
答案 1 :(得分:0)
试试这个,对我有用的解决方案:
function fooBar(){
// your code goes here
console.log("see me every second");
setTimeout(fooBar, 1000);
}
setTimeout(fooBar, 1000);