Can I unblur NSFW content by default?
Can I unblur NSFW content by default?
Even with “show NSFW” content turned on in settings, images are blurred by default until we click on them. Can we turn this off?
Can I unblur NSFW content by default?
Even with “show NSFW” content turned on in settings, images are blurred by default until we click on them. Can we turn this off?
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)css
.img-blur { filter: none; -webkit-filter: none; -moz-filter: none; -o-filter: none; -ms-filter: none; }
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; } `);
modified it so that it also unblurs inside communities: (added * after the url)
js
// ==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; } `);
Perfect. I came to comment this exact thing, but you already did it!
Quick edit, to make the thumbnails larger (although a bit pixellated) you can also add this:
.thumbnail { max-height: none; }
We need to collect all this into a single post me thinks
Nice! Any solution like that for mobile Safari (iOS)?
No idea. The word you should search for in the App Store or wherever is "Userstyles"
Mlem app for ios doesn't blur the photos
God tier comment right here.
https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne
This is the chrome link
I can't get this to work though. I'm not sure what I'm doing wrong. I get a few issues:
#1
error 1 : 1 Unexpected "GM_addStyle(".
error 1 : 13 Unexpected "".
error 13 : 1 Unexpected "
".
error 13 : 2 Unexpected ")".
error 13 : 3 Unexpected ";".
Edit: turns out OPs code works perfectly and the ones from below just straight up don't work for me.
Just want to say thanks for this. I downloaded the Stylus plugin for Chrome and installed it into Edge (which is just a chromium fork these days), added that filter for anything coming from the lemmynsfw.com URL, and it worked like a charm.
Thankyou!!
https://github.com/dessalines/jerboa/issues/529 this is the active GitHub issue
Exactly my thoughts... But good news the Jerboa lemmy app (for Android) does this
How? Im using the app and I can't find the option?
I don't think it does honestly. I'm also using the app and don't see that listed anywhere.
I couldn't figure this out either
Also can't figure this out. Commenting so I can find this later.
Same here, no idea how to do that
It doesn't though.