Greasy Fork is available in English.

Unblur examples on Reverso

This script removes the blur effect from the examples on Reverso Context, allowing you to see more examples without registering to the website.

  1. // ==UserScript==
  2. // @name Unblur examples on Reverso
  3. // @name:it Togli la sfocatura agli esempi di Reverso
  4. // @description This script removes the blur effect from the examples on Reverso Context, allowing you to see more examples without registering to the website.
  5. // @description:it Questo script rimuove l'effetto sfocato dagli esempi su Reverso Context, permettendoti di vedere più esempi senza registrarti al sito web.
  6. // @namespace StephenP
  7. // @author StephenP
  8. // @version 2.0.0.1
  9. // @grant unsafeWindow
  10. // @match https://context.reverso.net/*
  11. // @run-at document-end
  12. // @contributionURL https://buymeacoffee.com/stephenp_greasyfork
  13. // @license AGPL-3.0-or-later
  14. // ==/UserScript==
  15. var st=document.createElement("STYLE");
  16. st.textContent="#blocked-results-banner, #blocked-rude-results-banner{display: none !important;} #examples-content, #examples-content, .example, .text{filter: none !important; -webkit-filter: none !important}";
  17. document.body.appendChild(st);
  18. unsafeWindow.logLOCD=true;
  19. unsafeWindow.user_id=getRandomInt(999999);
  20. //From https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random
  21. function getRandomInt(max) {
  22. return Math.floor(Math.random() * max);
  23. }