Youtube - Hide Livestreams in Subscriptions

Simply hides all videos that were produced by livestreams and livestreams themselves from your subscriptions feed.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Youtube - Hide Livestreams in Subscriptions
// @description Simply hides all videos that were produced by livestreams and livestreams themselves from your subscriptions feed.
// @namespace   azzurite.tv
// @match       https://www.youtube.com/*
// @grant       none
// @version     1.0
// @author      Azzurite
// @license     GPLv3
// ==/UserScript==

function hasLiveTag(card) {
    return [...card.querySelectorAll(`p`)].some(elem => elem.textContent === `LIVE`);
}

function hasStreamedMetadata(card) {
    return card.querySelector(`#metadata-line`)?.textContent.includes(`Streamed`);
}

function isFromLivestream(card) {
    return hasLiveTag(card) || hasStreamedMetadata(card);
}

function fixLayoutAfterRemoving(feed) {
debugger;
    (function shiftUp() {
        const items = [...feed.children];
        const shortsIdx = items.findLastIndex(item => item.querySelector(`h2`)?.textContent.includes(`Shorts`))
        const shorts = items[shortsIdx];
        const shiftUpToIdx = feed.classList.contains(`ytd-rich-grid-renderer`) ? 7 : 1;
        let toShiftUp = shiftUpToIdx - shortsIdx;
        let i = shortsIdx + 1;
        for (let i = shortsIdx + 1; toShiftUp !== 0; ++i, --toShiftUp) {
            feed.insertBefore(items[i], shorts);
        }
    })();

    (function fixFirstOfColumn() {
        const items = [...feed.querySelectorAll(`:scope > ytd-rich-item-renderer`)];
        for (let i = 0; i !== items.length; ++i) {
            const item = items[i];
            if (i % 3 === 0) {
                if (!item.hasAttribute(`is-in-first-column`)) item.setAttribute(`is-in-first-column`);
            } else {
                item.removeAttribute(`is-in-first-column`);
            }
        }
    })();
}




setInterval(() => {
    if (location.href !== `https://www.youtube.com/feed/subscriptions`) {
        return;
    }
    const feed = document.querySelector(`[page-subtype="subscriptions"] > #primary > ytd-rich-grid-renderer > #contents`);
    if (!feed) {
        return;
    }

    const items = [...feed.querySelectorAll(`:scope > ytd-rich-item-renderer`)];
    for (let i = 0; i < items.length; ++i) {
        const cur = items[i];
        if (isFromLivestream(cur)) {
            cur.remove();
        }
    }

    fixLayoutAfterRemoving(feed);
}, 500);