Crunchyroll Visited Hider

Hide visited animes/links to more easily spot new shows

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Crunchyroll Visited Hider
// @namespace    http://tampermonkey.net/
// @version      0.2.1
// @description  Hide visited animes/links to more easily spot new shows
// @author       You
// @match        https://www.crunchyroll.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=crunchyroll.com
// @grant        GM.setValue
// @grant        GM.getValue
// ==/UserScript==

function l(...args){
    console.log('[Visited]', ...args)
}

//Anime name
function name(target){
    return target.querySelector('.browse-card-static__title-link--EeNHn').text
}

function key(target){
    return `visited-${name(target)}`
}

//Observe changes to the DOM
const observer = new MutationObserver((mutationsList, observer) => {
    for(let mutation of mutationsList){
        let card = mutation.target
        //Filter for the relevant html element
        if(card.className == 'carousel-scroller__card--4Lrk-'){
            //Hide visited animes
            GM.getValue(key(card)).then(visited => {
                if(visited){
                    card.style.filter = 'brightness(0.1)'
                }
            })

            //Add to local storage (:visited can't be used in javascript only in css, and css can't select the parent of the a:visited element)
            mutation.target.addEventListener('click', () => {
                l(name(card), 'clicked')
                GM.setValue(key(card), true).then(() => l(`set ${key(card)}`))
            })
        }
    }
})

observer.observe(document, {subtree:true, childList:true, attributes:true})