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.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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  2.0.0.1
// @grant    unsafeWindow
// @match    https://context.reverso.net/*
// @run-at document-end
// @contributionURL https://buymeacoffee.com/stephenp_greasyfork
// @license     AGPL-3.0-or-later
// ==/UserScript==
var st=document.createElement("STYLE");
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}";
document.body.appendChild(st);
unsafeWindow.logLOCD=true;
unsafeWindow.user_id=getRandomInt(999999);
//From https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random
function getRandomInt(max) {
  return Math.floor(Math.random() * max);
}