Cleanup YouTube Recommendations in Search and Playlist

Deletes "Popular videos from today", "Users have also seen", "New channels for you", "For you", "Already viewed", "Recommended playlists" and "Recommended videos" Sections from Search Results and Playlists on YouTube

目前為 2023-12-12 提交的版本,檢視 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name            Cleanup YouTube Recommendations in Search and Playlist
// @name:de         Bereinige YouTube Empfehlungen in der Suche und bei Playlisten
// @version         1.1.4
// @description     Deletes "Popular videos from today", "Users have also seen", "New channels for you", "For you", "Already viewed", "Recommended playlists" and "Recommended videos" Sections from Search Results and Playlists on YouTube
// @description:de  Entfernt die Abschnitte "Beliebte Videos von heute", Nutzer haben auch gesehen", "Neue Kanäle für dich", "Für mich", "Schon angesehen", "Empfohlene Playlists" und "Empfohlene Videos" aus den Suchergebnissen und aus Playlisten auf YouTube
// @icon            https://www.google.com/s2/favicons?domain=youtube.com
// @author          TalkLounge (https://github.com/TalkLounge)
// @namespace       https://github.com/TalkLounge/cleanup-youtube-recommendations-search-playlist
// @license         MIT
// @match           https://www.youtube.com/*
// @grant           none
// ==/UserScript==

(function () {
    'use strict';

    function cleanup() {
        if (window.location.href.startsWith("https://www.youtube.com/playlist")) {
            document.querySelector('ytd-item-section-renderer[is-playlist-video-container]')?.remove(); // Recommended videos
            document.querySelector('ytd-item-section-renderer[is-playlist-shelf]')?.remove(); // Recommended playlists
            document.querySelector('ytd-continuation-item-renderer:nth-child(2)')?.remove(); // Loading circle
        }

        if (window.location.href.startsWith("https://www.youtube.com/results")) {
            [...document.querySelectorAll("ytd-shelf-renderer")].forEach(item => item.remove()); // Sections: Popular videos from today, Users have also seen, New channels for you, For you, Already viewed
            [...document.querySelectorAll("ytd-horizontal-card-list-renderer")].forEach(item => item.remove());
        }

        if (window.location.href.startsWith("https://www.youtube.com/@") && (!window.location.pathname.substr(2).includes("/") || window.location.pathname.endsWith("/featured"))) {
            [...document.querySelectorAll("ytd-shelf-renderer")].filter(item => item.querySelector("yt-horizontal-list-renderer")).find(item => !item.querySelector("#play-button").children.length)?.remove(); // For you
            [...document.querySelectorAll("ytd-item-section-renderer")].filter(item => !item.querySelector("#contents").children.length)[0]?.remove(); // For you Border
        }
    }

    cleanup();
    setInterval(cleanup, 500);
})();