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; } `);
Exactly my thoughts... But good news the Jerboa lemmy app (for Android) does this
It doesn't though.
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.