Youtube Collapse Sidebar

collapse youtube sidebar

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

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

You will need to install an extension such as Tampermonkey to install this script.

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

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

你需要先安裝一款使用者腳本管理器擴展,比如 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);
})();