Greasy Fork is available in English.
Remove Upcoming and Recent Events from directory
// ==UserScript==
// @name Twitch: Event Remover
// @namespace http://tampermonkey.net/
// @version 2017.10.31
// @description Remove Upcoming and Recent Events from directory
// @author Amraki
// @include *://*twitch.tv/directory/*
// @grant none
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js
// ==/UserScript==
(function() {
'use strict';
$(document).ready(function() {
var maxAttempts = 200; // 20 secs
var i = 0;
var returnVal = setInterval(function() {
if ($("div.featured-events-layout__column").length) {
$("div.featured-events-layout__column").remove();
}
if (i === maxAttempts) {
clearInterval(returnVal);
}
i++;
}, 100);
});
})();