hide underaged users (chat avenue)

removes messages in chat-avenue.com's gay chat that are most likely coming from minors (and wierdos).

  1. // ==UserScript==
  2. // @name hide underaged users (chat avenue)
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.3
  5. // @description removes messages in chat-avenue.com's gay chat that are most likely coming from minors (and wierdos).
  6. // @author Dev'd
  7. // @match gaychat.chat-avenue.com/*
  8. // @license MIT
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=chat-avenue.com
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. // large ty to https://github.com/KinkyDeveloper for ChatAf's code which helped me create this project
  14.  
  15. const filter = /[^0-9a-z]?1[^0-9a-z]?[0-7]|1[0-7]|i[^0-9a-z]?[0-7]|i[0-7]|\|[0-7]/gims
  16.  
  17. //var str = "ELLO IM LIKE | 3 PLS BAN ME" // testing regex
  18. //console.log(filter.test(str)); // true
  19.  
  20. function handleChat() {
  21. var messages = document.getElementsByClassName('chat_message');
  22.  
  23. message_loop:
  24. for (let message of messages) {
  25. if (message.getAttribute('handled')) {
  26. continue;
  27. }
  28. message.setAttribute('handled', true); //to stop unessesary checking
  29. var images = message.getElementsByClassName('chat_image');
  30. var message_box = message.parentElement.parentElement;
  31. var content = message.innerHTML.toLowerCase()
  32.  
  33. if (images.length == 0){ //means not a image
  34. if (filter.test(content) == true) {
  35. message_box.remove()
  36. console.log("Blocked term found. Deleteing one message. \n" + content)
  37. }
  38. }
  39. }
  40. }
  41.  
  42. setInterval(handleChat, 450);