您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove all useless blocks from steam.tv stream page
// ==UserScript== // @name SteamTV shit remover // @require http://code.jquery.com/jquery-1.12.4.min.js // @namespace http://tampermonkey.net/ // @version 0.2 // @description Remove all useless blocks from steam.tv stream page // @author VirusAlex // @match https://steam.tv/* // @grant none // ==/UserScript== function removeShit(){ $( ".chatModalCover" ).remove(); $( ".BroadcastChatDivider" ).remove(); $( ".BroadcastChatDiv" ).remove(); $( ".BroadcastDetailsSection" ).remove(); $( ".BroadcastTabHeaderContainer" ).remove(); $( ".ChatTabs" ).remove(); $("div.BroadcastContainerSectionVideoContainer").removeClass("BroadcastContainerSectionVideoContainer") $('div[class^="main_SteamPageHeader_"]').children().eq(4).remove(); $('div[class^="main_SteamPageHeader_"]').children().eq(2).remove(); $('div[class^="main_SteamPageHeader_"]').children().eq(1).remove(); $('div[class^="main_SteamPageHeader_"]').children().eq(0).remove(); $('div[class^="main_SteamPageHeader_"]').removeAttr('class'); setTimeout(reloadPage, 600000); //10 minutes } function reloadPage(){ location.reload(true); } setTimeout(removeShit, 6000);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址