// ==UserScript== // @name Crunchyroll Hide the Dubs // @namespace yattoz // @description Hides dubs from crunchyroll release calendar // @include https://*.crunchyroll.com/simulcastcalendar* // @version 2 // @license GNU GPLv3 // @run-at document-end // @downloadURL none // ==/UserScript== let a = document.querySelectorAll("ol > li > article > div > h1"); a.forEach(b => { if (b.textContent.includes(" Dub)")) { b.parentElement.parentElement.style.display = "none"; } });