RespondeAi

Disable the blur effect on answers page.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @icon https://greasyfork.s3.us-east-2.amazonaws.com/dj7rqyqc1uoe67jap43w07gju9bj
// @name            RespondeAi
// @name:pt-BR      RespondeAi
// @version         3.0
// @namespace       sasd
// @author          R4wwd0G
// @description     Disable the blur effect on answers page.
// @description:pt-br     Disable the blur effect on answers page.
// @include			https://www.respondeai.com.br/*
// ==/UserScript==

                 


document.querySelectorAll("*").forEach(a => {
    let b = window.getComputedStyle(a).filter;
    if (b && b.includes("blur")) a.style.filter = "none";
});

Array.from(document.styleSheets).forEach(c => {
    try {
        Array.from(c.cssRules || []).forEach(d => {
            if (d.style && d.style.filter && d.style.filter.includes("blur")) d.style.filter = "none";
        });
    } catch {}
});

let e = document.getElementById("dialog-container");
if (e) e.remove();

const f = new MutationObserver(() => {
    let g = document.getElementById("dialog-container");
    if (g) {
        g.remove();
        f.disconnect();
    }
});

f.observe(document.body, { childList: true, subtree: true });