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

5 points
*
  1. Download https://addons.mozilla.org/en-US/firefox/addon/styl-us/ (or whatever the chrome link for it is)
  2. Open the popup
  3. Click the lemmynsfw.com part of the address under Write style for (otherwise it’ll use the full URL and won’t apply to the all the site)
  4. Paste this in:
.img-blur {
  filter: none;
  -webkit-filter: none;
  -moz-filter: none;
  -o-filter: none;
  -ms-filter: none;
}
permalink
report
reply
3 points

That’s nice solution. But I needed to add !important to end of filter to make it work.

For userscript usage (with greasemonkey, tampermoney etc.):

// ==UserScript==
// @name lemmynsfw no blur
// @description lemmynsfw no blur
// @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;
  }
`);
permalink
report
parent
reply
2 points
*

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;
  }
`);
permalink
report
parent
reply
3 points

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;
  }
`);
permalink
report
parent
reply
0 points

Maybe make this a toggle somewhere?

permalink
report
parent
reply
2 points

Yeah, I was thinking about forking lemmy codebases and making edits on them. But instead of manipulating it on web ui, I think we can add this to account settings so anyone can choose whatever they want. But important than this, we should have bigger image as default and not click each thumbnail to see content.

permalink
report
parent
reply
2 points

https://github.com/dessalines/jerboa/issues/529 this is the active GitHub issue

permalink
report
reply
-1 points

Exactly my thoughts… But good news the Jerboa lemmy app (for Android) does this

permalink
report
reply
2 points

It doesn’t though.

permalink
report
parent
reply
1 point

How? Im using the app and I can’t find the option?

permalink
report
parent
reply
4 points

I don’t think it does honestly. I’m also using the app and don’t see that listed anywhere.

permalink
report
parent
reply

Ask Lemmy NSFW

!asklemmynsfw@lemmynsfw.com

Create post

Think /r/AskLemmy but way more NSFW.

Treat this community like a cross between /c/AskLemmy, /c/Sex, and /c/Fetishes.

RULES:

  • All posts must be in the form of a question and be largely NSFW.

  • Only text posts are allowed. Links can be posted if they are very relevant.

POST GUIDELINES:

  • Try to avoid questions that can simply be googled or have yes/no answers.

  • Search before you post. Your question may have been asked before.

  • If you ask medical/physical questions don’t always trust the comments here.

COMMENT GUIDELINES:

  • Avoid low-effort comments. Lone images, memes, jokes etc.

  • Treat all questions as if they’re real, no matter how ridiculous.

  • Follow reddiquette with all reponses to avoid downvotes & removal.

Community stats

  • 384

    Monthly active users

  • 458

    Posts

  • 4.9K

    Comments