Greasy Fork is available in English.
净化虎牙主界面,让直播回归纯净模式
当前为
// ==UserScript==
// @name 虎牙网页版 - 播放界面纯净模式
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 净化虎牙主界面,让直播回归纯净模式
// @author yaochao
// @match https://www.huya.com/*
// @icon https://www.google.com/s2/favicons?domain=huya.com
// @grant none
// @require https://cdn.staticfile.org/jquery/3.5.0/jquery.min.js
// @license MIT
// ==/UserScript==
(function() {
'use strict';
var $ = window.$ || $;
// 屏蔽虎牙 p2p 上传和下载
//window.RTCPeerConnection = window.webkitRTCPeerConnection = window.mozRTCPeerConnection = null
window.RTCDataChannel = window.DataChannel = null
// 定时3秒后,把多余的元素删除,修改部分组件的样式
setTimeout(function(){
// 我的关注列表:移除放录像的直播间
$(".tag-replay,.off").parent().parent().remove()
$(".btn-more").remove()
},3000);
})();