YouTube Focus

For those sick of seeing distracting garbage on YouTube's homepage.

  1. // ==UserScript==
  2. // @name YouTube Focus
  3. // @namespace jeremy@use.startmail.com
  4. // @namespace http://goo.gl/m79y0X
  5. // @description For those sick of seeing distracting garbage on YouTube's homepage.
  6. // @include https://*youtube*/
  7. // @version 1.4
  8. // @grant none
  9. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  10. // ==/UserScript==
  11.  
  12. var iHTML = '<div style="width:100%;font-family:cursive;font-size:100px;text-transform:uppercase;color:#222222;text-align:center;padding-top:200px;">Focus</div>';
  13. jQuery('ytd-two-column-browse-results-renderer.ytd-browse').empty().append(iHTML).parent().css('background-color','#C3C3C3;');