NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name IELTShhh // @author neslinesli93 // @namespace https://didattica.polito.it/portal/page/portal/home/Studente // @version 0.1 // @require http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js // @include https://*.* // @grant unsafeWindow // ==/UserScript== $(document).ready(function () { var tables = $("table.RegionBorderMao"); for (var i = 0; i < tables.length; i++) { t = tables[i]; masterDiv = $(t).find("tbody>tr>td>div")[0]; if (masterDiv == window.undefined) { continue } myDiv = $(masterDiv).children()[2]; if (myDiv == window.undefined) { continue } text = myDiv.innerText; if (text.indexOf("IELTS") >= 0) { $(t).hide(); } } });