RIC0H / RGL Signaure Remover

// ==UserScript==
// @name RGL Signaure Remover
// @namespace RGL Signaure Remover
// @description Removes signatures from the RenegadeLine forum
// @include https://renegadeline.com
// @include https://renegadeline.com/*
// @version 1
// @author RIC0H
// @grant none
// @run-at document-start
// ==/UserScript==

// allow pasting

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

    /* Disable Signatures */
addGlobalStyle('[data-type="user-signature"] {display: none !important;}'
);