Remove Popular Channels Tab (Twitch)

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或关注我们的公众号极客氢云获取最新地址