privoxy-blocklist icon indicating copy to clipboard operation
privoxy-blocklist copied to clipboard

Converter skips some html elements

Open arabesc opened this issue 8 years ago • 3 comments

E.g., example.com##div[class^="some_text"] wouldn't be handled.

arabesc avatar Jun 26 '16 15:06 arabesc

Thank you for reporting, I'll check adding a handler for HTML elements for version 0.5.

Andrwe avatar Jan 10 '24 00:01 Andrwe

I checked the current implementation and it is broken because * does not match all requests anymore.

I'm implementing a fix in https://github.com/Andrwe/privoxy-blocklist/tree/check_privoxy_runtime_logs.

This might take some time because during my tests I found the content filter to slowdown request processing of Privoxy by up to minutes. One test case took ~4 minutes until the response was received by the client. So far my tests show that the slowdown is impacted by the amount of patterns per applying filter and the size of the requested page.

Therefore I'm working on some optimization and a configuration option to en-/disable content filtering.

Andrwe avatar Jan 17 '24 00:01 Andrwe

With https://github.com/Andrwe/privoxy-blocklist/pull/48 HTML elements with global scope will be filtered when enabled in configuration file.

Other scopes (domain-based & HTML-tag-based) will be implemented in later versions.

Andrwe avatar Jan 28 '24 22:01 Andrwe