18+

You must be 18+ to view this community

You must be at least eighteen years old to view this. Are you over eighteen and willing to see adult content?

 

Even with “show NSFW” content turned on in settings, images are blurred by default until we click on them. Can we turn this off?

all 11 comments

sorted by: hot top controversial new old
[–] 4 points 3 years ago* (1 child)
  1. Download https://addons.mozilla.org/en-US/firefox/addon/styl-us/ (or whatever the chrome link for it is)
  2. Open the popup
  3. Click the lemmynsfw.com part of the address under Write style for (otherwise it'll use the full URL and won't apply to the all the site)
  4. Paste this in:
.img-blur {
  filter: none;
  -webkit-filter: none;
  -moz-filter: none;
  -o-filter: none;
  -ms-filter: none;
}
  • source
  • hideshow 2 child comments
  • [–] 3 points 3 years ago (2 children)

    That's nice solution. But I needed to add !important to end of filter to make it work.

    For userscript usage (with greasemonkey, tampermoney etc.):

    // ==UserScript==
    // @name lemmynsfw no blur
    // @description lemmynsfw no blur
    // @match https://lemmynsfw.com/
    // @grant GM_addStyle
    // @run-at document-start
    // ==/UserScript==
    
    GM_addStyle(`
      .img-blur {
        filter: none !important;
        -webkit-filter: none !important;
        -moz-filter: none !important;
        -o-filter: none !important;
        -ms-filter: none !important;
      }
    `);
    
  • source
  • parent
  • hideshow 4 child comments
  • [–] 2 points 3 years ago* (1 child)

    modified it so that it also unblurs inside communities: (added * after the url)

    // ==UserScript==
    // @name lemmynsfw no blur
    // @version 1.1
    // @description unblur
    // @match https://lemmynsfw.com/*
    // @grant GM_addStyle
    // @run-at document-start
    // ==/UserScript==
    
    GM_addStyle(`
      .img-blur {
        filter: none !important;
        -webkit-filter: none !important;
        -moz-filter: none !important;
        -o-filter: none !important;
        -ms-filter: none !important;
      }
    `);
    
  • source
  • parent
  • hideshow 2 child comments
  • [–] 3 points 3 years ago

    Modified your modification to also improve the size of embeds (ie redgif content)

    // ==UserScript==
    // @name lemmynsfw no blur and embed size tweak
    // @version 1.2
    // @description unblur
    // @match https://lemmynsfw.com/*
    // @grant GM_addStyle
    // @run-at document-start
    // ==/UserScript==
    
    GM_addStyle(`
      .img-blur {
        filter: none !important;
        -webkit-filter: none !important;
        -moz-filter: none !important;
        -o-filter: none !important;
        -ms-filter: none !important;
      }
      div.post-listing > iframe {
        width: 100%;
        height: 26rem;
      }
    `);
    
  • source
  • parent
  • [–] 0 points 3 years ago (1 child)

    Maybe make this a toggle somewhere?

  • source
  • parent
  • hideshow 2 child comments
  • [–] 2 points 3 years ago (1 child)

    Yeah, I was thinking about forking lemmy codebases and making edits on them. But instead of manipulating it on web ui, I think we can add this to account settings so anyone can choose whatever they want. But important than this, we should have bigger image as default and not click each thumbnail to see content.

  • source
  • parent
  • hideshow 2 child comments
  • [–] -1 points 3 years ago (2 children)

    Exactly my thoughts... But good news the Jerboa lemmy app (for Android) does this

  • source
  • hideshow 4 child comments