NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Troll block // @namespace germany.ru // @include http://*.germany.ru/* // @exclude http://*.germany.ru/newreply.pl* // @exclude http://*.germany.ru/newpost.pl* // @exclude http://*.germany.ru/editpost.pl* // @version 1 // @grant none // ==/UserScript== var troll_name = [ "Черный Дельфин", "Nokia", "Pratkick", "zeitig1", "Gera10", "bo.rus", "atma", "kisheevn", "cosmos70", "johnsson", "wlad 000", "servis36", "Gamma 2", "polasx70", "Аня В.", "Аlex", "Дядя Мейсон", "mexx33", "melodia51", "DikijAngel", "kkl", "Iban 01" ]; window.onload= function getRidofTroll(){ var posts = document.querySelectorAll("div.list_cell0 img + a, div.list_cell1 img + a"); for (var i = 0; i < posts.length; i++) { var user = posts[i].innerHTML.toString(); if(troll_name.indexOf(user) != -1){ posts[i].parentElement.parentElement.parentElement.style.display = "none"; } } }