// ==UserScript== // @name Filmezz.eu Felugróablak Tiltó // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://stackoverflow.com/questions/18560335/how-to-refresh-dom-with-newly-created-elements // @grant none // @include http://filmezz.eu/* // @run-at document-start // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.addEventListener('beforescriptexecute', function() { var badScripts= $("section:contains('Ez is érdekelhet')"); badScripts.remove (); }, true); })();