RespondeAi

Disable the blur effect on answers page.

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

(I already have a user style manager, let me install it!)

// ==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 });