Hide LIVE on YouTube

Remove LIVE videos on Main Homepage

目前为 2023-05-20 提交的版本。查看 最新版本

// ==UserScript==
// @name         Hide LIVE on YouTube
// @version      1.1
// @description  Remove LIVE videos on Main Homepage
// @author       Wim Godden <[email protected]>
// @require      http://code.jquery.com/jquery-latest.js
// @match        https://*.youtube.com/*
// @grant        none
// @namespace https://gf.qytechs.cn/users/48886
// @license GPL3
// ==/UserScript==

(function() {
    'use strict';

    function removeLiveVideos(){
        $( "span.ytd-badge-supported-renderer:contains(LIVE)").parent().parent().parent().parent().parent().parent().parent().parent().hide();
    }

    const observer = new MutationObserver(removeLiveVideos);
    observer.observe(document.querySelector('#page-manager'), { childList:true, subtree:true });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址