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

  • God
    link
    English
    7
    edit-2
    1 year ago

    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;
      }
    `);
    
    • @FreePussy4All
      link
      English
      91 year 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;
        }
      `);
      
      • God
        link
        English
        31 year ago

        awesome! will update my install to this :)