Youtube Collapse Sidebar

collapse youtube sidebar

当前为 2023-06-07 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name            Youtube Collapse Sidebar
// @version         0.5
// @description     collapse youtube sidebar
// @namespace       https://greasyfork.org/users/821661
// @match           https://www.youtube.com/
// @match           https://www.youtube.com/results?*
// @match           https://www.youtube.com/@*
// @icon            https://i.ibb.co/VxF8nPm/8212733.png
// @author          hdyzen
// @run-at          document-start
// @inject-into     page
// @unwrap
// @license         MIT

// ==/UserScript==
(function () {
    ("use strict");

    function clickGuideButton() {
        const guideButton = document.querySelector("#guide-button");
        if (guideButton) {
            guideButton.click();
        }
    }

    // Função de callback para o MutationObserver
    function mutationCallback(mutationsList, observer) {
        for (let mutation of mutationsList) {
            if (
                mutation.type === "childList" &&
                document.querySelector("#sections")
            ) {
                clickGuideButton(); // Executa a função para clicar no botão de guia
                observer.disconnect(); // Para de observar as mutações quando o elemento desejado é encontrado
                break;
            }
        }
    }

    // Cria o MutationObserver
    const observer = new MutationObserver(mutationCallback);

    // Configura as opções do MutationObserver
    const observerConfig = {
        childList: true,
        subtree: true,
    };

    // Observa as mudanças no DOM
    observer.observe(document.documentElement, observerConfig);
})();