yes, but since i don't make the ui, i just insert scripts and wait for the ui devs to fix their stuff cuz i don't know how to do it for them.
Install Kiwi Browser on Android
Install Tampermonkey on Kiwi Browser (if you're on desktop, it's also available on Firefox, not on mobile tho)
Install this user script: https://lemmynsfw.com/comment/21062
And you're done, no more blur in the browser version, Jerboa will still be blurry though :D
awesome! will update my install to this :)
i made !consensualnonconsent , if u wanna mod it just post there and i'll mod you
i made !consensualnonconsent , if u wanna mod it just post there and i'll mod you
i made !consensualnonconsent , if u wanna mod it just post there and i'll mod you
honestly idk, i usually watch consensual-nonconsent kinda stuff but 1. it has a tiny audience and 2. it usually makes ppl angry and drives them away. I wouldn't wanna bring my shit here cuz then you'd have more trouble than good i imagine.
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;
}
`);