您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hides watched animes so it is easier to spot new episodes
// ==UserScript== // @name Crunchyroll Watchlist Hider // @version 2.2 // @description Hides watched animes so it is easier to spot new episodes // @match https://www.crunchyroll.com/* // @icon https://www.google.com/s2/favicons?domain=crunchyroll.com // @grant none // @namespace https://greasyfork.org/users/206408 // ==/UserScript== (function() { 'use strict'; // Your code here... function l(...args){ console.log('[Watchlist]', ...args) } function filter(){ let cards = document.querySelectorAll(".watchlist-card--YfKgo") l(cards) for(let card of cards){ let text = card.querySelector(".watchlist-card-subtitle--IROsU").textContent if(text.includes("Watch Again")){ card.style.filter = 'brightness(0.15)' } } } //Observe changes to the DOM const observer = new MutationObserver((mutationsList, observer) => { if(window.location.href === 'https://www.crunchyroll.com/watchlist'){ l(mutationsList) for (const mutation of mutationsList) { if (mutation.addedNodes.length > 0) { l('Nodes added') filter(); break; // Stop after the first relevant mutation to avoid redundant filtering } } } }) observer.observe(document, {subtree:true, childList:true, attributes:false}) })();