Requested feature overview description.
Currently, blacklisted images are hidden like this: .blacklisted { display: none }
The problem is, most browsers download these images anyway because the src attribute of each blacklisted image is intact. I tried to make a script to avoid this, but it seems to be impossible - whenever a browser encounters any img src, something that happens long before Javascript execution, that image will be downloaded.
It's a simple thing to change, I think. On the server side, you could set a dummy attribute on blacklisted images (like data-src) which holds the thumbnail link. Then if someone presses "toggle blacklist", iterate through the blacklisted images with Javascript to set the actual src tag, so the thumbnails are downloaded as needed.
Why would it be useful?
It would save bandwidth, people won't be requesting and downloading thumbnails they don't want to see anyway.
Also, I'd rather not be downloading the things on my blacklist at all. Currently I am, they're just not visible to me.
What part(s) of the site page(s) are affected?
Blacklisted images on https://e621.net/post/index
Updated by abadbird