// ==UserScript== // @name Simulcast Calendar Dub Remover - crunchyroll.com // @namespace Violentmonkey Scripts // @match https://www.crunchyroll.com/simulcastcalendar // @grant none // @version 1.0 // @author farhil // @description Removes dubs from simulcast calendar to reduce clutter // @license MIT // @downloadURL none // ==/UserScript== $('.releases li').each(function() { var $this = $(this); var text = $('.season-name', $this).text(); if (text.includes('Dub)')) { $this.remove(); } })