How block special symbols on all web. pages?

Discussion of topics related to ad blocking.
Locked
SheerGeyser
New Member
New Member
Posts: 3
Joined: Wed Sep 04, 2019 5:58 pm

How block special symbols on all web. pages?

Post by SheerGeyser »

Hello, I’m interested in the possibility to add to the list of “manual filter settings”, some characters, such as (▅ ▆ ▇ █ ▉ ▊ ▍ ▎ ▏ ▐ ░ ▒ ▓ ▔ ▕) and the like. I tried to understand the syntax, but could not implement a filter that would block these characters on all sites that are currently open.
Is it possible to implement this, and if so, how?

Thanks in advance for your support.
intense
Contributor
Contributor
Posts: 10500
Joined: Wed Mar 27, 2013 9:56 am

Post by intense »

Could you provide an example page and what on page you want to block ?
SheerGeyser
New Member
New Member
Posts: 3
Joined: Wed Sep 04, 2019 5:58 pm

Post by SheerGeyser »

intense wrote: Thu Sep 05, 2019 4:32 pm Could you provide an example page and what on page you want to block ?
Here are examples of pages with symbols. Take for example " █ " how to block this symbol on all web. pages?

https://pixelplus.ru/samostoyatelno/stati/vnutrennie-faktory/tablica-simvolov-unicode.html
https://forum.tamirov.ru/viewtopic.php?f=27&t=38
intense
Contributor
Contributor
Posts: 10500
Joined: Wed Mar 27, 2013 9:56 am

Post by intense »

- that symbol is part of html structures and you cannot hide only that char but the whole structure (p / span / ..)

- these are the filters (in ABP syntax)

Code: Select all

pixelplus.ru##p:-abp-contains(█)
forum.tamirov.ru##span:-abp-contains(█)
SheerGeyser
New Member
New Member
Posts: 3
Joined: Wed Sep 04, 2019 5:58 pm

Post by SheerGeyser »

I’m interested in blocking a symbol without html or css, and specifically keeping an array of characters that need to be blocked on all sites, that is, so that you don’t have to specify each time the rule when a site encounters such a symbol.

for example

Code: Select all

all##block(█, ▇, ▆, ▅)
- something like that...
Locked