Greasy Fork is available in English.

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.

  1. // ==UserScript==
  2. // @name Clean Youtube Homepage
  3. // @name:it Pagina iniziale di Youtube pulita
  4. // @version 1.1.1
  5. // @grant none
  6. // @namespace StephenP
  7. // @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.
  8. // @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.
  9. // @author StephenP
  10. // @match https://www.youtube.com/
  11. // @match https://m.youtube.com/
  12. // @license AGPL-3.0-or-later
  13. // @contributionURL https://buymeacoffee.com/stephenp_greasyfork
  14. // ==/UserScript==
  15. var st=document.createElement("STYLE");
  16. st.textContent="[page-subtype=home],[tab-identifier=FEwhat_to_watch]{display: none}";
  17. document.getElementsByTagName("HEAD")[0].appendChild(st);