// ==UserScript== // @name PureLive // @version 0.0.1 // @description:zh-cn 移除直播网站广告 // @namespace Violentmonkey Scripts // @include https://www.zhanqi.tv/* // @grant none // @description 移除直播网站广告 // @downloadURL none // ==/UserScript== /** * WARNING * 本脚本仅支持 Violentmonkey Scripts */ $(document).ready(() => { const zhanqi = () => { $('.live-chat-content').remove(); // 聊天窗口 $('.live-side-content').remove(); // 左侧边栏 $('.want-headlines-btn').remove(); // 上头条 $('.js-room-fun-area').remove(); // 礼物区域 $('.sdk-zhanqiMall').remove(); // 商城按钮 $('.anchor-info-area').remove(); // 主播信息 let styleTag = $('') $('html > head').append(styleTag); $(window).trigger('resize'); } switch(location.host){ case 'www.zhanqi.tv': case 'zhanqi.tv': zhanqi(); break; } });