M
M
MilkyWay2014-02-16 22:40:32
Browsers
MilkyWay, 2014-02-16 22:40:32

How to bypass sites blocking AdBlock?

Everyone's favorite ad blocking extension AdBlock Plus is worth it. But more and more often I began to notice that sites got the hang of detecting it and do not let you into the site until you turn it off. The question is extremely simple - how to deal with this, or maybe there are blockers that "do not glow"?

Answer the question

In order to leave comments, you need to log in

10 answer(s)
A
Andrew, 2014-02-16
@kaasius

If you do not pay for the service - you are not a client, you are a product. So take down the adblock, sites do not take money from you, advertisers pay for you.

G
Gring76, 2016-11-25
@Gring76

I am using this solution.
To link addblock with those sites where the functionality is limited - you need to put, for example,
Tampermonkey for chrome From the site tampermonkey.net (or from the app store)
Then go to
https://github.com/reek/anti-adblock-killer#anti-a. ..
And add a subscription to the scripts
Subscribe from github.com
Install.
Install from github.com
Get
Features
Detect & Kill Anti-Adblockers
Check if Anti-Adblock Killer list is installed
Check & Notify updates
More filters for Adblockers
Settings
Suggest features
After that, the same CNEWS no longer blocks its articles when viewed with addblocker

T
Timur, 2014-02-17
@XAKEPEHOK

You are unlikely to find such blockers. The adblock detection principle is simple: if a certain block with ads is empty, missing, it has the attribute style="display:none;" or something like that - it means you have adblock or another ad blocker

M
Miki_Mori, 2014-05-30
@Miki_Mori

The easiest way is to just right-click on the message asking you to remove the blocker, select "source code", and fucking delete its div. Voila! Use the site. But you have to do this every time, as the page is updated

F
FlooDwm, 2018-06-11
@FlooDwm

There is a solution. Don't surf the internet. Got a question? Go to the library or consult with a specialist, call the help desk.
Why use what people collected, structured, made a site for it.
Better yet, do all that work, host the site, and don't run ads.

B
breakore, 2015-05-14
@breakore

Click on the LMB adblock icon, select "Lock element" - select the banner. In the window that appears, click "Add". Not automatic of course, but also quickly and efficiently. If, when entering the site, a blocking picture appears - the same operation.

R
RRRRRRR1, 2017-07-23
@RRRRRRRR1

Everything is very simple:
1. Put the banner cutter on the router. The OpenWRT firmware of my TP-Linka allows this. https://habrahabr.ru/post/263081/
2. Disable Adblock, uBlock or whatever cuts ads for this site.

L
laz_gen, 2017-09-16
@laz_gen

if it just blocks access to the content, then this will do:
var result = [],
elems = document.getElementsByTagName( '*' );
for( var i =0, elem; elem = elems[ i++ ]; ) {
if ( elem.style.zIndex > 100 ) {
elem.style.zIndex = -999
elem.style.visibility = 'hidden'
}
}
but again because there, for the id, a value is randomly generated, then I had to do a crutch, so if someone on the site has built elements with z-index> 100, as they usually do in blockers, then the block is moved away and hidden, but I don’t like this solution. invented in 5 minutes on the knee
and can "break" sites if z-index > 100 for site elements, although normal people do not use this.

M
meeshanya, 2021-01-14
@meeshanya

In such cases, I can turn off the pop-up window with the same adblock. Select the popup window, click block the element, the same with the background overlay and you're done!

D
Dmitry, 2021-08-24
@Itachi261092

Oh my God, what difficulties have been written, github, blacklists, my own =) just disable JS through the browser debugger and that's it. no fucking advertising. as for any sites with articles - this is enough to read the article. the rest of the blocks will most likely be broken, but no windows will pop up.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question