September 7, 20178 yr // ==UserScript== // @name Chatbox Blocker // @namespace // @version 0.1 // @description Blocks peoples' messages in chatbox // @author Soldtodie // @match http://tampermonkey.net/index.php?ext=dhdg // @grant none // ==/UserScript== (function() { var blocked = ["name1", "name2", "name3", "name4", "name5"]; remove(); function remove() { var elements = document.getElementsByTagName("small"); for (var i = 0; i < elements.length; i++) { var name = elements[i].children[0].children[0].children[0].innerText.toString(); for (var b = 0; b < blocked.length; b++) { if (name === blocked[b]) { elements[i].parentElement.remove(); break; } } } setTimeout(remove, 100); } })(); all credits goes to soldtodie , script isnt very reliable (wont block the messages at all sometimes, dunno how to fix) but better than nothing replace names in the blocked variable use with tampermonkey
September 7, 20178 yr Same I was like wtf black people in chatbox what kinda click bait title is that.
September 7, 20178 yr 1 hour ago, Team Cape said: this is immoral and wrong Yet it’s perfectly fine on the forums?
September 7, 20178 yr Holy shit thank you, getting rid of cancer immediately. Edited September 8, 20178 yr by hiddensnake72
Create an account or sign in to comment