// ==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 // @downloadURL none // ==/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"); } });