lolo888 / force scroll

// ==UserScript==
// @name         force scroll 
// @namespace    overflowScroll
// @version      1.0
// @description  Get all scroll
// @author       lolo888
// @license MIT
// @copyright 2024, lolo
// @match        https://community.letsencrypt.org/*
// @run-at document-end
// ==/UserScript==

document.html = document.html || document.getElementsByTagName("html")[0];
document.html.innerHTML = document.html.innerHTML.replace('overflow-y: hidden !important;', '');
document.querySelector(".buorg").remove();

//console.log("html:", document.html.style.getPropertyPriority);

GM_addStyle(`
html { overflow-y: visible !important; }
`);