God

u/god@lemmynsfw.com
0 posts · 9 comments

Recent posts

No posts.

Recent comments

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

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;
  }
`);