Clean Youtube Homepage

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.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==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);