您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes the wall of stupid videos that Youtube vomits on your face when you first open its home page: with this script, the homepage will look like the one of a search engine, with the searchbar on the top and the categories on the left.
// ==UserScript== // @name Clean Youtube Homepage // @name:it Pagina iniziale di Youtube pulita // @version 1.1.1 // @grant none // @namespace StephenP // @description Removes the wall of stupid videos that Youtube vomits on your face when you first open its home page: with this script, the homepage will look like the one of a search engine, with the searchbar on the top and the categories on the left. // @description:it Rimuove la muraglia di video idioti che Youtube ti vomita in faccia appena apri la home page: con questo script, la pagina principale avrà l'aspetto di quella di un motore di ricerca, con la barra di ricerca in alto e le categorie a sinistra. // @author StephenP // @match https://www.youtube.com/ // @match https://m.youtube.com/ // @license AGPL-3.0-or-later // @contributionURL https://buymeacoffee.com/stephenp_greasyfork // ==/UserScript== var st=document.createElement("STYLE"); st.textContent="[page-subtype=home],[tab-identifier=FEwhat_to_watch]{display: none}"; document.getElementsByTagName("HEAD")[0].appendChild(st);