NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name ekşi sözlük zeynep bastık engelleyici // @namespace https://openuserjs.org/scripts/deccoyi/zeynepBastikEngelleyici // @version 0.9 // @description zeynep bastık saçmalıklarını engeller // @license MIT // @author inoglu'nun kodunu düzenledim :) deccoyi // @match https://*.eksisozluk.com/ // @match https://eksisozluk.com/* // ==/UserScript== 'use strict'; $(document).ready(function() { setTimeout(kickZeyno, 100); }); function kickZeyno() { $('.topic-list > li > a:contains("zeynep bastık")').each(function() { $(this).fadeOut(); console.log("zeynep bastık gg oldu"); }); };