Remove Bottom Text Content (Jummbox No Scroll)

Removes the text content under the editor, which removes the scrollbar on the page in most layouts

// ==UserScript==
// @name        Remove Bottom Text Content (Jummbox No Scroll)
// @namespace   Violentmonkey Scripts
// @match       https://ultraabox.github.io/
// @match       https://aurysystem.github.io/goldbox/
// @match       https://jummb.us/
// @grant       none
// @version     1.0.1
// @author      PlanetBluto
// @description Removes the text content under the editor, which removes the scrollbar on the page in most layouts
// @license     MIT
// ==/UserScript==

var int = setInterval(() => {
  var Description = document.getElementById("text-content")
  if (Description) {
    Description.remove()
    clearInterval(int)
  }
}, 10)