NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Bağır Çağır Kullanıcı Engelleme // @namespace https://openuserjs.org/scripts/cevem/ // @version 0.1.0 // @description Bağır çağırdan istediğiniz vatandaşı engeller. // @author inoglu // @match http://alkislarlayasiyorum.com/ // ==/UserScript== (function() { $('#bagirCagirMesajlar').on('DOMNodeInserted', function(e) { if ($(e.target).is('.mesajContent')) { // KULLANICI BAŞLANGIÇ - ENGELLEMEK İÇİN ALTTAKİ 3 SATIRI KOPYALAYIN VE KULLANICI ADINI GİRİN $('.mesajContent > .mesajcontentHeader > .bagircagirUser:contains("xxxcokxxx")').each(function() { $(this).parent().parent().html("<p style='background-color:#EB0E5B; font-size:10px; letter-spacing:2px; text-align:center !important; padding:5px'>ENGELLENMİŞ KULLANICI</p>"); }); // KULLANICI BİTİŞ - ENGELLEMEK İÇİN ALTTAKİ 3 SATIRI KOPYALAYIN VE KULLANICI ADINI GİRİN } }); })();