// ==UserScript== // @name Removes Recommended Channels // @namespace Violentmonkey Scripts // @match https://www.twitch.tv/* // @grant none // @version 1.0 // @author emeymemymeymeymey // @description Removes annoying avatars (aka the recommended feed) from the sidebar // ==/UserScript== const inject = (rules) => { let element = document.createElement('style'); element.innerHTML = rules; element.setAttribute('id', 'injected-hide-recommended'); return document.head.append(element); }; window.addEventListener('load', () => { inject('div.side-bar-contents > div > div > div:not([aria-label^="Followed "]){display:none!important;}'); });