Remove Bottom Text Content (Jummbox No Scroll)

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

  1. // ==UserScript==
  2. // @name Remove Bottom Text Content (Jummbox No Scroll)
  3. // @namespace Violentmonkey Scripts
  4. // @match https://ultraabox.github.io/
  5. // @match https://aurysystem.github.io/goldbox/
  6. // @match https://jummb.us/
  7. // @grant none
  8. // @version 1.0.1
  9. // @author PlanetBluto
  10. // @description Removes the text content under the editor, which removes the scrollbar on the page in most layouts
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. var int = setInterval(() => {
  15. var Description = document.getElementById("text-content")
  16. if (Description) {
  17. Description.remove()
  18. clearInterval(int)
  19. }
  20. }, 10)