Visavant / BGTSCC Mini

// ==UserScript==
// @name         BGTSCC Mini
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Reduce
// @author       Aspect of Sorrow
// @match        https://bgtscc.net/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var images = document.getElementsByTagName('img');
    var l = images.length;
    for (var i= document.images.length; i-->0;)
    {
        if (document.images[i].alt == "User avatar") document.images[i].parentNode.removeChild(document.images[i]);
    }
    document.body.innerHTML= document.body.innerHTML.replace('<div id="top"><a style="width:100%; height:100%; display:block;" href="/"><div id="render" align="right"></div></a></div>','');
    document.body.innerHTML= document.body.innerHTML.replace('<img src="/styles/Baldurs/theme/images/irc.png" "="">','');
    document.body.innerHTML= document.body.innerHTML.replace('<img border="0" src="https://i.imgur.com/qIecU9F.png" align="left">','');
    document.body.innerHTML= document.body.innerHTML.replace('Server IP and Port:','');
    document.body.innerHTML= document.body.innerHTML.replace('Baldur\'s Gate','Work Mode');
    document.body.innerHTML= document.body.innerHTML.replace('BG:TSCC','Work Mode');
    document.body.innerHTML= document.body.innerHTML.replace('<input style="border:0px; background-color:transparent!important;" type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">','');
    document.body.innerHTML= document.body.innerHTML.replace('<img src="[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)" width="100" height="100" alt="User avatar">','');
    document.body.innerHTML= document.body.innerHTML.replace('<input style="border:0px; background-color:transparent!important;" type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">','');
})();