Skip Navigation
FreePussy4All

He/him - 80's ๐Ÿ‘ถ - Heteroflexible switch ๐Ÿ”€ - ๐Ÿณ๏ธโ€๐ŸŒˆ Ally - 420

Open-minded and super kinky ๐Ÿ˜ˆ

Posts
1
Comments
3
Joined
2 yr. ago
  • Cute! Welcome to the fun part of the internet ๐Ÿฅณ

  • That's a nice load. Wish I was there to ๐Ÿ˜› it up.

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

     undefined
        
    // ==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;
      }
    `);