YT - hide streams on watchlist

try to take over the world!

  1. // ==UserScript==
  2. // @name YT - hide streams on watchlist
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://www.youtube.com/*
  8. // @grant none
  9. // @require https://code.jquery.com/jquery-3.2.1.min.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. jQuery('span.style-scope.ytd-grid-video-renderer:contains(Streamed)').closest('#dismissable').parent().remove();
  16.  
  17. setInterval(function() {
  18. jQuery('span.style-scope.ytd-grid-video-renderer:contains(Streamed)').closest('#dismissable').parent().remove();
  19. }, 1600);
  20. })();