NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name RealityGaming | Afficher signature uniquement au passage de la souris
// @homepage https://realitygaming.fr/
// @match https://realitygaming.fr/*
// @match http://realitygaming.fr/*
// @icon https://i.imgur.com/B8O9rMU.png
// @grant none
// @version 1.0
// ==/UserScript==
function RealityGaming_loaded()
{
var Princesse = "<style>.signature:before { content: \"Signature Cachée - Passer la souris dessus pour voir\"; font-weight: bold; } .signature:hover:before { content: \"\"; } .signature{ height: 16px; overflow: hidden; } .signature:hover{ height: auto; }</style>";
$("head link[rel='stylesheet']").last().after(Princesse);
}
$(document).ready(RealityGaming_loaded);