diff --git a/anti-adblock-killer.user.js b/anti-adblock-killer.user.js index 145653f73..e97469d4b 100644 --- a/anti-adblock-killer.user.js +++ b/anti-adblock-killer.user.js @@ -5014,6 +5014,18 @@ ]; } }, + prevention_com : { + host : ['prevention.com'], + onAfterScript : function () { + for (let item of document.body.getElementsByClassName("block")) { + item.style.visibility = "hidden"; + } + + for (let item of document.querySelectorAll(".ad-blocker-custom-blur")) { + item.className= ""; + } + } + }, ad_defend_uab : { // note: when adblock detected inject new ads // userscript: https://openuserjs.org/scripts/schwarztee/AdDefend_Klatsche @@ -5774,4 +5786,4 @@ Aak.initialize(); -})(window); \ No newline at end of file +})(window);