Page 1 of 1

How block special symbols on all web. pages?

Posted: Thu Sep 05, 2019 4:29 pm
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.

Re: How block special symbols on all web. pages?

Posted: Thu Sep 05, 2019 4:32 pm
by intense
Could you provide an example page and what on page you want to block ?

Re: How block special symbols on all web. pages?

Posted: Thu Sep 05, 2019 5:31 pm
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

Re: How block special symbols on all web. pages?

Posted: Thu Sep 05, 2019 5:43 pm
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(█)

Re: How block special symbols on all web. pages?

Posted: Thu Sep 05, 2019 5:54 pm
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...