NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Remove NSFW Blur // @namespace Violentmonkey Scripts // @match https://dtf.ru/ // @grant none // @version 1.0 // @author aq1 // @description 1/5/2023, 11:21:49 PM // @license MIT // ==/UserScript== function removeNSFWBlur() { document.querySelectorAll('.content--is-visible-blur').forEach( (e) => { e.classList.remove('content--is-visible-blur'); } ); } const observer = new MutationObserver(removeNSFWBlur); observer.observe( document.body, { childList: true, attributes: false, subtree: false } );