RespondeAi

Disable the blur effect on answers page.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

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