NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name HHN Heinz - Flash-Videos und zukuenfige Folien anzeigen // @namespace http://tampermonkey.net/ // @version 1.1 // @description Zeigt alles, was kommentiert ist. // @author Rene Moll (www.it-moll.de) // @match http://mitarbeiter.hs-heilbronn.de/~heinz/*/* // @grant none // @require http://code.jquery.com/jquery-latest.js // ==/UserScript== (function() { var tempParent='body'; $(tempParent).html($(tempParent).html().replace("Beginn der Folien -->", '')); $(tempParent).html($(tempParent).html().replace("################################# Ende der Folien", '')); deleteCommentary('body'); function deleteCommentary(parent) { while ($(parent).html().indexOf("<!--") > -1 || $(parent).html().indexOf("-->") > -1) { var temp = $(parent).html(); temp= temp.replace("<!--", ''); temp=temp.replace("-->", ''); temp=temp.replace("yy", ''); temp=temp.replace("xx", ''); temp=temp.replace("@@", ''); temp=temp.replace("@@>", ''); temp=temp.replace(">", ''); $(parent).html(temp); } } })();