// ==UserScript== // @name 直播吧过滤电竞 // @namespace https://www.zhibo8.cc/ // @version 1.3 // @description 过滤电竞条目,高亮关注球队,过滤无用干扰信息 // @author robaggio // @match https://www.zhibo8.cc // @match https://www.zhibo8.cc/* // @require http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js // @run-at document-end // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 定义过滤关键词 const fitlerKeywords = ["电竞","NBL","斯诺克"]; // 过滤掉电竞项目 for (let keyword of fitlerKeywords) { $( "li[label*='" + keyword + "']" ).remove(); } // 定义主队 const teams = ["拜仁慕尼黑","AC米兰","勇士","火箭"]; // 背景高亮+大字 for (let team of teams) { $( "li[label*='" + team + "']" ).css({backgroundColor: "#74b5f7",fontSize:"160%"}) } // 去掉没用的干扰信息 $( "a:contains('NBA范特西')" ).remove(); $( "a[href*='http://www.188bifen.com/']" ).remove(); $( "a[href^='https://www.zhibo8.cc/other/']" ).css({color:'#bbb'}) $('.advert').remove(); })();