Hello everyone

I would like to filter images loaded by my browser, and block them, in order to increase speed. But the problem is, there are images I'd like not to be blocked (such as reCaptcha).

I've looked for a while on a lot of forums, documentation, and the only thing I found is this :

QWebSettings::globalSettings()->setAttribute(QWebSettings::AutoLoadImages, false);

But it's blocking every image. So... that's not really what I want. I want to block every image, except those who contains recaptcha, let's say.

Thank you in advance for your further answers.