Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)GO
God @lemmynsfw.com
Posts 0
Comments 9
How to Create an Image Set
  • Install Kiwi Browser on Android

    Install Tampermonkey on Kiwi Browser (if you're on desktop, it's also available on Firefox, not on mobile tho)

    Install this user script: https://lemmynsfw.com/comment/21062

    And you're done, no more blur in the browser version, Jerboa will still be blurry though :D

  • What other Coms (communities) would you like to see in LemmyNSFW?
  • honestly idk, i usually watch consensual-nonconsent kinda stuff but 1. it has a tiny audience and 2. it usually makes ppl angry and drives them away. I wouldn't wanna bring my shit here cuz then you'd have more trouble than good i imagine.

  • Can I unblur NSFW content by default?
  • 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;
      }
    `);