mirror of https://github.com/gorhill/uBlock.git
harden for #1240
This commit is contained in:
parent
634644aa9f
commit
6545a6d0b2
|
@ -5,7 +5,7 @@
|
|||
146704ad1c0393e342afdb416762c183 assets/ublock/badware.txt
|
||||
5baa90e2da7cd6a73edff2010557ee57 assets/ublock/redirect.txt
|
||||
12b0660eebed61255fc67ad185dfd4e8 assets/ublock/experimental.txt
|
||||
f93dd68ddcbc32804f80c7a3556c3833 assets/ublock/resources.txt
|
||||
b201da0c7bd2fa98e59e05219bff2f3d assets/ublock/resources.txt
|
||||
059e0bfbf22bd242dda7b07389fe09a2 assets/ublock/filter-lists.json
|
||||
3605c73f21abca428c7eb69a8bc32dfe assets/thirdparties/easylist-downloads.adblockplus.org/easyprivacy.txt
|
||||
a91af77c47c302c0741c7445b0fada1a assets/thirdparties/easylist-downloads.adblockplus.org/easylist.txt
|
||||
|
|
|
@ -424,6 +424,13 @@ yavli-defuser.js application/javascript
|
|||
} catch (e) {
|
||||
}
|
||||
}
|
||||
var sto = window.setTimeout;
|
||||
window.setTimeout = function(a, b) {
|
||||
var re = /rec\(rid,\s*tw\s*\+\s*step\)/;
|
||||
if ( (typeof b !== 'number' || (b % 200) === 0) && !re.test(a.toString()) ) {
|
||||
sto(a, b);
|
||||
}
|
||||
};
|
||||
})();
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue