NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @namespace https://openuserjs.org/users/mfluehr // @name Clean Up Odysee/Lbry // @description Remove the related video sidebar. // @license MIT // @version 1.0.0 // @match *://lbry.tv/* // @match *://odysee.com/* // @run-at document-start // @grant none // ==/UserScript== const styleSheet = document.createElement('style'); styleSheet.type = 'text/css'; styleSheet.innerText = ` .file-page__recommended { visibility: hidden; } `; document.addEventListener("DOMContentLoaded", e => { document.head.appendChild(styleSheet); });