Bilibili Hider

bilibili hide

  1. // ==UserScript==
  2. // @name Bilibili Hider
  3. // @description bilibili hide
  4. // @version 0.1.2
  5. // @author Kanna阿飘大hentai
  6. // @namespace http://weibo.com/Mr256luch
  7. // @grant none
  8. // @include https://live.bilibili.com/p/eden/area-tags?areaId=0&parentAreaId=9
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. setInterval(function() {
  13.  
  14. var list = document.querySelectorAll('.text-info-ctnr span'), i;
  15.  
  16. for(i=0; i<list.length; i++){
  17. if(list[i].getAttribute("title")){
  18. var thisStr = list[i].getAttribute("title")
  19. var findStr = ["转播","测试直播"]
  20. findStr.forEach(function (item, index, array) {
  21. if(list[i].getAttribute("title").indexOf(item)+1){
  22.  
  23. list[i].parentNode.parentNode.parentNode.style.display = 'none';
  24. }
  25. });
  26. }
  27. }
  28. }, 10);
  29. })();

QingJ © 2025

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