Greasy Fork is available in English.

RespondeAi

Disable the blur effect on answers page.

  1. // ==UserScript==
  2. // @icon https://greasyfork.s3.us-east-2.amazonaws.com/dj7rqyqc1uoe67jap43w07gju9bj
  3. // @name RespondeAi
  4. // @name:pt-BR RespondeAi
  5. // @version 3.0
  6. // @namespace sasd
  7. // @author R4wwd0G
  8. // @description Disable the blur effect on answers page.
  9. // @description:pt-br Disable the blur effect on answers page.
  10. // @include https://www.respondeai.com.br/*
  11. // ==/UserScript==
  12.  
  13.  
  14.  
  15. document.querySelectorAll("*").forEach(a => {
  16. let b = window.getComputedStyle(a).filter;
  17. if (b && b.includes("blur")) a.style.filter = "none";
  18. });
  19.  
  20. Array.from(document.styleSheets).forEach(c => {
  21. try {
  22. Array.from(c.cssRules || []).forEach(d => {
  23. if (d.style && d.style.filter && d.style.filter.includes("blur")) d.style.filter = "none";
  24. });
  25. } catch {}
  26. });
  27.  
  28. let e = document.getElementById("dialog-container");
  29. if (e) e.remove();
  30.  
  31. const f = new MutationObserver(() => {
  32. let g = document.getElementById("dialog-container");
  33. if (g) {
  34. g.remove();
  35. f.disconnect();
  36. }
  37. });
  38.  
  39. f.observe(document.body, { childList: true, subtree: true });