// ==UserScript== // @name MangaPark Ad Remover // @author sm00nie // @version 1.00 // @description Removes the "popup" divs // @grant none // @match http://*.mangapark.me/* // @require http://code.jquery.com/jquery-latest.js // @namespace https://greasyfork.org/users/165048 // @downloadURL none // ==/UserScript== $(function() { $('*[class^="kiwi"]').remove(); });