Get past Men’s Health adblocker (and general tips to remove adblocker blocks)

Aymon Fournier
1 min readFeb 21, 2018

--

Open chrome console (⌘ + option + C)

in the console, Add jQuery:

var script = document.createElement('script');script.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js";document.getElementsByTagName('head')[0].appendChild(script);

Hover your mouse over the popup.

Press Delete.

Now, you still have blurry text. If you hover over it…

We can see that the actual content is just obscured by the class name. So we change it to a class name that isn’t obscured.

$('.ad-blocker-custom-blur').addClass('field-body').removeClass('ad-blocker-custom-blur');

tada. no need to turn off your adblocker.

--

--