Greasy Fork

Greasy Fork is available in English.

Crunchyroll Hide the Dubs

Hides dubs from crunchyroll release calendar

目前为 2023-12-10 提交的版本。查看 最新版本

// ==UserScript==
// @name     Crunchyroll Hide the Dubs
// @namespace   yattoz
// @description Hides dubs from crunchyroll release calendar
// @include	 https://*.crunchyroll.com/simulcastcalendar
// @version  1
// @license GNU GPLv3
// ==/UserScript==


let sheet = window.document.styleSheets[0];
sheet.insertRule('.dub { display: none; }', sheet.cssRules.length);

let a = document.querySelectorAll("ol > li > article > div > h1");
a.forEach(b => {
    if (b.textContent.includes(" Dub)")) {
        b.parentElement.parentElement.classList.add("dub");
    }
});