Brutal.io Cleanup Script

Download Tampermonkey, Violentmonkey, or other and run this script on Brutal.io to remove the overlay on the home screen.

  1. // ==UserScript==
  2. // @name Brutal.io Cleanup Script
  3. // @namespace Tampermonkey Scripts
  4. // @match http://brutal.io/
  5. // @match https://brutal.io/
  6. // @grant none
  7. // @version 1.0
  8. // @author AmsterPlays
  9. // @description Download Tampermonkey, Violentmonkey, or other and run this script on Brutal.io to remove the overlay on the home screen.
  10. // ==/UserScript==
  11. $( document ).ready(function() {
  12. $("#bannerID").remove();
  13. $("#mobileBoxId").remove();
  14. $("#linksID").remove();
  15. $("#firstRightBox").remove();
  16. $(".advertiseBox").remove();
  17. $(".leftBottomBox").remove();
  18. $("#pfArrow").remove();
  19. $("#graphicsID").remove();
  20. $(".basic-text2").text("• COPY ROOM LINK");
  21. $("#afterRightBox").remove();
  22. });