隐藏排行榜里收藏过的动画、游戏
当前为
// ==UserScript==
// @name bgmHider
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 隐藏排行榜里收藏过的动画、游戏
// @author You
// @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";
}
});
})();