Youtube no home page

Remove youtube home page without turning off watch history.

  1. // ==UserScript==
  2. // @name Youtube no home page
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-01-07
  5. // @description Remove youtube home page without turning off watch history.
  6. // @author You
  7. // @match *://music.youtube.com/*
  8. // @match *://.*.youtube.com/*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
  10. // @grant none
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. document.getElementById("primary").style.display="none";
  18. })();