Hide the next video button that is not a playlist

https://www.reddit.com/r/userscripts/comments/1ik0gx2/how_to_hide_youtube_suggestedrecommended_video/

// ==UserScript==
// @name                Hide the next video button that is not a playlist
// @namespace           https://gf.qytechs.cn/users/821661
// @match               https://www.youtube.com/*
// @grant               none
// @version             1.0
// @author              hdyzen
// @description         https://www.reddit.com/r/userscripts/comments/1ik0gx2/how_to_hide_youtube_suggestedrecommended_video/
// ==/UserScript==

document.addEventListener("yt-renderidom-finished", () => {
    const isPlaylist = document.querySelector("ytd-watch-flexy[playlist]");

    if (isPlaylist) {
        document.querySelector(".ytp-next-button")?.removeAttribute("hidden");
    } else {
        document.querySelector(".ytp-next-button")?.setAttribute("hidden", "");
    }
});

QingJ © 2025

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