God

  • 0 Posts
  • 11 Comments
Joined 2 years ago
cake
Cake day: June 11th, 2023

help-circle









  • GodtoAsk Lemmy NSFWWhere do you download porn?
    link
    fedilink
    English
    arrow-up
    3
    ·
    2 years ago

    I browse stuff, and then i use either a browser extension (last resort) or i send it to Telegram bot @YtbDownBot which has a downloader thing. Generally I simply download from sites or from Telegram channels.

    The idea is to have a backup to save stuff. But I don’t do it too often because I rarely watch stuff I download, and it also adds videos to my galleries and then if I open a gallery on my tablet or something like that I will have a bunch of nsfw stuff, so I can’t open video gallery in public, so I’m thinking of deleting my porn there and having it elsewhere. I do have like 11 tb of HDD I bought, I can put it there.


  • GodtoAsk Lemmy NSFWCan I unblur NSFW content by default?
    link
    fedilink
    English
    arrow-up
    7
    ·
    edit-2
    2 years 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;
      }
    `);