For those sick of seeing distracting garbage on YouTube's homepage.
当前为
// ==UserScript== // @name YouTube Focus // @namespace [email protected] // @namespace http://goo.gl/m79y0X // @description For those sick of seeing distracting garbage on YouTube's homepage. // @include https://*youtube*/ // @version 1.3 // @grant none // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // ==/UserScript== var iHTML = '<div style="width:100%;font-family:cursive;font-size:100px;text-transform:uppercase;color:#222222;text-align:center;padding-top:10%;">Focus</div>'; jQuery('#content').empty().append(iHTML).parent().css('background-color','#C3C3C3;');