您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Disable the blur effect on answers page.
当前为
// ==UserScript== // @name RespondeAi // @version 2.2.21 // @namespace sasd // @author R4wwd0G // @description Disable the blur effect on answers page. // @include https://www.respondeai.com.br/* // ==/UserScript== function exec(fn) { var script = document.createElement('script'); script.setAttribute("type", "application/javascript"); script.textContent = '(' + fn + ')();'; document.body.appendChild(script); document.body.removeChild(script); } exec(function() { PageObserver.disconnect(); }); document.body.innerHTML = document.body.innerHTML.replace(/blur/g,''); const PageObserver = new MutationObserver((changes) => { changes.forEach((change) => { if (element.style.filter === 'blur(5px)') { element.style.filter = 'blur(0px)';} }); }); function refreshBlurClassAttributes() { const elementsWithBlurClass = document.getElementsByClassName('blur'); for (const element of elementsWithBlurClass) { element.style.filter = 'blur(0px)'; } } setInterval(refreshBlurClassAttributes, 1);