Crunchyroll Hide the Dubs

Hides dubs from crunchyroll release calendar

目前為 2023-12-11 提交的版本,檢視 最新版本

// ==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
// ==/UserScript==


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

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址