您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
For removing the obnoxious and arbitrary "Popular Channels" tab on the left panel.
// ==UserScript== // @name Remove Popular Channels Tab (Twitch) // @namespace http://tampermonkey.net/ // @version 1.0 // @description For removing the obnoxious and arbitrary "Popular Channels" tab on the left panel. // @author Lord Nazo // @match https://www.twitch.tv/* // @grant none // @require http://code.jquery.com/jquery-3.4.1.min.js // ==/UserScript== /* Why BTTV doesn't have this feature, I don't understand. */ $(document).ready(function() { // Using intervals to search for "Popular Channels" var checkForPopularTab = setInterval(function(){ //console.log('Starting interval search...'); if ($('div.tw-flex-grow-1.tw-full-width > div.tw-mg-b-2')) { $('div.tw-flex-grow-1.tw-full-width > div.tw-mg-b-2').remove(); console.log('Removed \"Popular Channels\" tab.'); clearInterval(checkForPopularTab); } }, 3000); })
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址