Greasy Fork

Simulcast Calendar Dub Remover - crunchyroll.com

Removes dubs from simulcast calendar to reduce clutter

当前为 2022-04-16 提交的版本,查看 最新版本

// ==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
// ==/UserScript==
$('.releases li').each(function() {
    var $this = $(this);
    var text = $('.season-name', $this).text();
    if (text.includes('Dub)')) {
        $this.remove();
    }
})