Greasy Fork is available in English.

geniuschatremover

small script to remove chat on page load

// ==UserScript==
// @name            geniuschatremover
// @description     small script to remove chat on page load
// @description:en  small script to remove chat on page load
// @version         3
// @author          nnmrts
// @match           http://genius.com/*
// @match           https://genius.com/*
// @grant           none
// @require         http://code.jquery.com/jquery-3.1.1.min.js
// @namespace https://greasyfork.org/users/86510
// ==/UserScript==

(function(){
$( document ).ready( function () {
    if ($("chat")[0]) {
        $("chat")[0].parentNode.removeChild($("chat")[0]);
    }
    if ($("#chat")[0]) {
        $("#chat")[0].parentNode.removeChild($("#chat")[0]);
    }
    if ($(".chat")[0]) {
        $(".chat")[0].parentNode.removeChild($(".chat")[0]);
    }
});
}());