NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name eksisozluk reklamlari kaldır. // @namespace http://tampermonkey.net/ // @version 0.1 // @description Ekside reklamları kapat // @author ;) // @match https://eksisozluk.com/* // @license MIT // @grant none // ==/UserScript== (function () { (function () { $('[class^="ad-double-click"]').each(function () { $(this).remove() }) setTimeout(tekrar, 3500) })(); function tekrar() { $('[class^="ad-double-click"]').each(function () { $(this).remove() }) } })();