NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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; } `);