RespondeAi

Disable the blur effect on answers page.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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