您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
menu guida autorestringe
当前为
// ==UserScript== // @name Youtube large figuccio // @description menu guida autorestringe // @namespace https://greasyfork.org/users/237458 // @version 0.4 // @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== // hide "guide" menu //pulsante guide- button (hide "guide" menu) $(document).ready(function() { (function() { setTimeout(function(){ document.querySelector("#guide-button").click();}, 1000); })(); }); /* (function() { var guide_button=document.getElementById('guide-button'); if(guide_button){ var tmp=guide_button.getElementsByTagName('button'); if(tmp.length) { tmp=tmp[0].attributes; if(tmp&&tmp['aria-pressed'].value=='true') guide_button.click(); } } })(); */