F
ForgottenSeer 107474
Thread author
Sometimes you will see advertisements or empty place holders on websites which are not blocked by adblockers
When your mouse is on the add or place holder, simply RIGHT CLICK and choose INSPECT those elements, you will notice that they have a randomized CLASS or ID in their name
This will prevent the uBO selector and AG "Block ads" to generate a rule which will last (it will only block once).
When it is a CLASS, simply add the rule
meaning hide HTML dividers with a CLASS containing (*) the text in quotes
When it is an ID, simply add the rule
meaning hide HTML dividers with a ID containing (*) the text in quotes
So in this example it would be
because a part of the selector always contains "top1-container" now this advertisement placeholder will be hidden
When your mouse is on the add or place holder, simply RIGHT CLICK and choose INSPECT those elements, you will notice that they have a randomized CLASS or ID in their name
This will prevent the uBO selector and AG "Block ads" to generate a rule which will last (it will only block once).
When it is a CLASS, simply add the rule
Code:
domainname.com##div[class*=""logical name"]
When it is an ID, simply add the rule
Code:
domainname.com##div[id*="logical name"]
So in this example it would be
Code:
volkskrant.nl##div[class*=top1-container"]
Last edited by a moderator: