Simulcast Calendar Dub Remover - crunchyroll.com

Removes dubs from simulcast calendar to reduce clutter. Also adds "Last Week" button when it is missing.

Author
Justin Carroll
Daily installs
0
Total installs
54
Ratings
0 0 0
Version
1.2
Created
2022-04-16
Updated
2023-01-06
License
MIT
Applies to

This is a simple script that removes all cards where the title of the show contains the string Dub). If you want to filter out all dubs except English (or another language), replace line 14 with the following:

if (text.includes('Dub)') && !text.includes('English Dub)')) {

The simulcast calendar also has an annoying behavior where if the calendar is empty (such as early Monday before any shows have aired) the "Last Week" button is not present on the page. That behavior makes it difficult to view last week's schedule in order to see what shows are upcoming.

Rather than creating a separate extension just to add the button back, I have added code to this extension to put the "Last Week" button back into place. If the buttons are already present for any reason, this script will not add the button to the DOM.