mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
This commit is contained in:
parent
fbaf45f71f
commit
ce2d235e4f
3 changed files with 18 additions and 2 deletions
|
@ -1,11 +1,11 @@
|
|||
806a4a65759eadd6fe7749cfd267af7f assets/ublock/unbreak.txt
|
||||
62111a29f0a5cb361ba8dbae92054adb assets/ublock/redirect-resources.txt
|
||||
67590d6837f8cbd72a57e660da196e2e assets/ublock/privacy.txt
|
||||
1e081d3a1c25adea4ef997f3a64944c2 assets/ublock/filters.txt
|
||||
31e384eb84be3d08d1a9353508d9d585 assets/ublock/filters.txt
|
||||
146704ad1c0393e342afdb416762c183 assets/ublock/badware.txt
|
||||
5baa90e2da7cd6a73edff2010557ee57 assets/ublock/redirect.txt
|
||||
12b0660eebed61255fc67ad185dfd4e8 assets/ublock/experimental.txt
|
||||
42db8b50a133a44e37a58bc491814fd3 assets/ublock/resources.txt
|
||||
b9029ecf3e86935ea63be98b2966e02f assets/ublock/resources.txt
|
||||
fd3bf1065012191e032f81468de43e09 assets/ublock/filter-lists.json
|
||||
3605c73f21abca428c7eb69a8bc32dfe assets/thirdparties/easylist-downloads.adblockplus.org/easyprivacy.txt
|
||||
a91af77c47c302c0741c7445b0fada1a assets/thirdparties/easylist-downloads.adblockplus.org/easylist.txt
|
||||
|
|
|
@ -322,3 +322,6 @@ filmvf.net,filmstreaming-hd.com,gaara-fr.com,gaytube.com,gum-gum-streaming.com,h
|
|||
|
||||
# https://github.com/gorhill/uBlock/issues/1397
|
||||
||googletagservices.com/tag/js/gpt.js$script,redirect=googletagservices.com/gpt.js,domain=focus.de
|
||||
|
||||
# https://adblockplus.org/forum/viewtopic.php?f=2&t=43914#p147866
|
||||
wired.com##script:inject(wired-defuser.js)
|
||||
|
|
|
@ -693,3 +693,16 @@ addthis.com/addthis_widget.js application/javascript
|
|||
update: noopfn
|
||||
};
|
||||
})();
|
||||
|
||||
|
||||
# https://adblockplus.org/forum/viewtopic.php?f=2&t=43914#p147866
|
||||
wired-defuser.js application/javascript
|
||||
(function() {
|
||||
var sto = window.setTimeout,
|
||||
re = /^function n\(\)/;
|
||||
window.setTimeout = function(a, b) {
|
||||
if ( b !== 50 || !re.test(a.toString()) ) {
|
||||
sto(a, b);
|
||||
}
|
||||
};
|
||||
})();
|
||||
|
|
Loading…
Reference in a new issue