[–] 3 points 3 years ago (3 children)

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.

  • source
  • [–] 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
  • context