Youtube large figuccio

menu guida autorestringe

Från och med 2023-04-22. Se den senaste versionen.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Youtube large figuccio
// @description  menu guida autorestringe
// @namespace    https://greasyfork.org/users/237458
// @version      0.7
// @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==
/////////////////pulsante guide- button (hide "guide" menu){return;}evita errore triangolo giallo
var $ = window.jQuery;
$(document).ready(function() {
(function() {
    setTimeout(function(){
	let guide_button = document.getElementById ('guide-button');
				if (!guide_button)
					{return;}
				let tmp = guide_button.getElementsByTagName ('button');
				if (!tmp.length)
					{return;}
				tmp = tmp [0];
				if (!tmp.hasAttribute ('aria-pressed'))
					{return;}
				if (tmp.attributes ['aria-pressed'].value == 'true')
					guide_button.click ();}, 1000);
})();
});