// ==UserScript== // @name Twitch VODCAST remover // @namespace http://maxbrown.dk // @version 0.1 // @description Remove VODCASTS from following page // @author Max Brown // @match *.twitch.tv/directory/following // @grant none // @require https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js // @downloadURL none // ==/UserScript== (function() { 'use strict'; $(document).ready(function() { var maxTry = 200; // 20 secounds setInterval(function() { if ($(".pill").length) { $(".pill").each(function(i,v) { if ($(v).text().toLowerCase() == "vodcast") { $(v).parent().parent().parent().parent().parent().remove(); } }); } }, 100); }); })();