Greasy Fork is available in English.
Remove LIVE videos on Main Homepage
// ==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://greasyfork.org/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 });})();