bilibili hide
当前为
// ==UserScript==
// @name Bilibili Hider
// @description bilibili hide
// @version 0.1.0
// @author Kanna阿飘大hentai
// @namespace http://weibo.com/Mr256luch
// @grant none
// @include https://live.bilibili.com/p/eden/area-tags?areaId=0&parentAreaId=9
// ==/UserScript==
(function() {
setInterval(function() {
var list = document.querySelectorAll('.text-info-ctnr span'), i;
for(i=0; i<list.length; i++){
if(list[i].getAttribute("title")){
if(list[i].getAttribute("title").indexOf('转播')+1){
list[i].parentNode.parentNode.parentNode.style.display = 'none';
}
}
}
}, 100);
})();