I'm trying to modify setInterval on a website using Greasemonkey. My code looks like this:
// @run-at document-start
(function() {
var clearIntervalOriginal = unsafeWindow.clearInterval;
unsafeWindow.clearInterval = function(foo) {
GM_log(typeof foo + ":" + foo)
clearIntervalOriginal(foo);
}
}());
Example website.
If you look at console log you'll see that the interval ID number isn't there and instead foo is sometimes an object. Looking at site source, I think this is the relevant code being used:
//yahoo code
i.tid=c.setInterval(function(){
if(i.done){
c.clearTimeout(i.tid);
i.rec=[i.t_render-h,i.t_jsload-h,i.t_jsinit-h,i.t_jsend-h,i.t_jsend-i.t_jsinit]
}
},f);
How can I get the interval ID number from foo object?
console.logoutputs. Based on whatever that is, this should be trivial to answer for yourself. – Matt Ball May 1 '12 at 4:18creference in the second piece of code? In the first bit,clearIntervalis replaced (which is not a good strategy to start with), then laterclearTimeoutis called. Is that intended? As Nick says, the timer reference is ini.tid, so that is what you need to cancel it. – RobG May 1 '12 at 6:47