Youtube Large Guide

Hide guide menu by default on YouTube

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Youtube Large Guide
// @description  Hide guide menu by default on YouTube
// @namespace    https://greasyfork.org/users/237458
// @version      1.0
// @match        https://www.youtube.com/*
// @author       figuccio
// @grant        GM_addStyle
// @grant        GM_setValue
// @grant        GM_getValue
// @run-at       document-idle
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
// @icon         https://www.youtube.com/s/desktop/3748dff5/img/favicon_48.png
// @license      MIT
// ==/UserScript==
(function() {
    'use strict';
    var $ = window.jQuery;
    $(document).ready(function() {
        var url = undefined;
        var act = 2;

        setInterval(function() {
            if (act == 0 && document.location.toString() != url) {
                act = 1;
            }

            if (act == 1) {
                const Q = document.getElementsByTagName('yt-page-navigation-progress');
                if (!Q.length || !Q[0].hasAttribute('hidden')) {
                    return;
                }
                act = 2;
            }

            if (act == 2) {
                const guideButton = document.getElementById('guide-button');
                if (!guideButton) {
                    return;
                }

                let tmp = guideButton.getElementsByTagName('button');
                if (!tmp.length) {
                    return;
                }

                tmp = tmp[0];
                if (!tmp.hasAttribute('aria-pressed')) {
                    return;
                }

                if (tmp.getAttribute('aria-pressed') === 'true') {
                    guideButton.click();
                } else {
                    url = document.location.toString();
                    act = 0;
                    window.dispatchEvent(new Event('resize'));
                }
            }
        }, 1000);
    });
})();