1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 04:49:12 +02:00
This commit is contained in:
gorhill 2016-02-28 09:59:34 -05:00
parent 634644aa9f
commit 6545a6d0b2
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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);
}
};
})();