直播吧过滤电竞

过滤电竞条目,高亮关注球队,过滤无用干扰信息

目前为 2022-02-22 提交的版本。查看 最新版本

// ==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
// ==/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();
})();

QingJ © 2025

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