NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name TestHideElements // @namespace https://github.com/Urie96/UserScript // @match *://bits.*/* // @version 1.1 // @author Urie96 // @description 2025/04/13 21:43:37 // @license MIT // @run-at document-idle // @grant GM_addStyle // ==/UserScript== (function () { "use strict"; function hideElement(selector) { GM_addStyle(`${selector} {display: none !important;}`); } hideElement("#onesite-portal-header"); hideElement("#onesite-framework-root > div > div > div.with-sider-expanded"); })();