隐藏bangumi排行榜里收藏过的条目(动画、游戏)

隐藏排行榜里收藏过的动画、游戏

目前為 2020-03-20 提交的版本,檢視 最新版本

// ==UserScript==
// @name         隐藏bangumi排行榜里收藏过的条目(动画、游戏)
// @namespace    http://tampermonkey.net/
// @version      0.11
// @description  隐藏排行榜里收藏过的动画、游戏
// @author       雨夜
// @match        https://bgm.tv/*/browser?sort=rank*
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    // Your code here...
    var list = document.getElementById('browserItemList');
    console.log(list.childNodes.length)
    list.childNodes.forEach(n => {
        console.log(n.getElementsByClassName('collectModify'))
        if (n.getElementsByClassName('collectModify').length!==0) {
            console.log(n)
            n.style.display="none";
        }
    });
})();

QingJ © 2025

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