15
PaaPsik
6y

I recently started working with some adult content websites for my client, it's good money but it's hard working on the websites at home because of obvious reasons.

I want to avoid the awkwardness, so does anyone know of a plugin or some solution to black out all images on particular sites?

Comments
  • 2
    @amatrelan ( ͡° ͜ʖ ͡°)
  • 1
    Umatrix,
    block all images on the domain.
  • 1
    @metamourge thanks, I checked it out, it does work, but not to the extent I'm looking for. Because i'm also working on the front-end I need to keep the image sizes / dimensions. It blocks them, I want them blacked out or replaced, but kept in the same aspect ratio.. A very specific use case
  • 2
    @pionell you can maybe use any mitm proxy to serve custom image whenever any image is requested.
    This can be done using mitmproxy with a custom script.
  • 3
    @YourNemesis interesting, sounds like a fun/productive side project
  • 2
    https://github.com/mitmproxy/...

    For reference, here's a script which turns every image upside down
  • 5
    Set css property to overlay black color on all images or play with opacity. You'll find browser plugin to insert custom css.

    You can even set css to display img on hover.

    This way no compromise with dimentions
  • 1
    I believe the plugin was called content remover. It kept divs and stuff in place but set images and text to visibility: none; effectively hiding things and allowing you to see the layout.
Add Comment