Twitch - Hide Recommended Channels list

Hides the "Recommended Channels" list from the sidebar on twitch.tv

  1. // ==UserScript==
  2. // @name Twitch - Hide Recommended Channels list
  3. // @description Hides the "Recommended Channels" list from the sidebar on twitch.tv
  4. // @version 1
  5. // @grant none
  6. // @include *://twitch.tv/*
  7. // @include *://*.twitch.tv/*
  8. // @author @sverigevader
  9. // @namespace https://greasyfork.org/en/users/692021-sverigevader
  10. // ==/UserScript==
  11.  
  12. window.setTimeout(
  13. function check() {
  14. if (document.querySelector('[aria-label="Recommended Channels"]')) {
  15. main();
  16. }
  17. window.setTimeout(check, 250);
  18. }, 250
  19. );
  20.  
  21. function main() {
  22. var node = document.querySelector('[aria-label="Recommended Channels"]');
  23. node.innerHTML = "";
  24. }