privoxy-blocklist
privoxy-blocklist copied to clipboard
Converter skips some html elements
E.g., example.com##div[class^="some_text"]
wouldn't be handled.
Thank you for reporting, I'll check adding a handler for HTML elements for version 0.5.
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.
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.