This script removes the blur effect from the examples on Reverso Context, allowing you to see more examples without registering to the website.
当前为
// ==UserScript==
// @name Unblur examples on Reverso
// @name:it Togli la sfocatura agli esempi di Reverso
// @description This script removes the blur effect from the examples on Reverso Context, allowing you to see more examples without registering to the website.
// @description:it Questo script rimuove l'effetto sfocato dagli esempi su Reverso Context, permettendoti di vedere più esempi senza registrarti al sito web.
// @namespace StephenP
// @author StephenP
// @version 1.0.0
// @grant none
// @match https://context.reverso.net/*
// @run-at document-end
// @contributionURL https://nowpayments.io/donation/stephenpgreasyfork
// @license AGPL-3.0-or-later
// ==/UserScript==
var st=document.createElement("STYLE");
st.textContent="#blocked-results-banner{display: none !important;} #examples-content, #examples-content, .example.blocked, .text{filter: none !important; -webkit-filter: none !important}";
document.body.appendChild(st);