removes suggestion boxes, info about cricket etc. - http://pushka.com/coding-donation
当前为
// ==UserScript==
// @name Twitter Minimal - by Pushka.tv
// @namespace english
// @description removes suggestion boxes, info about cricket etc. - http://pushka.com/coding-donation
// @include http*://*twitter.com*
// @version 1.24
// @run-at document-start
// @grant GM_addStyle
// ==/UserScript==
// Main - CSS hides some block elements and expands other main divs to 100%
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = ' .dashboard-right, .dashboard-left .trends/*\n*/{display:none !important;}/*\n*//*\n*/.home-exp-tweetbox,.content-main,.DashboardProfileCard/*\n*/{width:100% !important;margin-left: 10px !important;}/*\n*//*\n*/.DashboardProfileCard-avatarLink/*\n*/{float:left !important;} /*\n*//*\n*/.DashboardProfileCard-bg/*\n*/{height: 50px !important;}/*\n*//*\n*/.DashboardProfileCard-userFields/*\n*/{ position: relative !important; float: left !important; margin-left: 5% !important;}/*\n*//*\n*/.DashboardProfileCard-stats/*\n*/{ position: relative !important; float: left !important; width: 50% !important; margin-left: 10% !important;}/*\n*/.u-lg-size1of4 , .u-size1of3{display: none !important;}/*\n*/.u-lg-size2of3, .u-lg-size3of4{width: 100% !important;}/*\n*/.profilepage .AppContainer{margin-top: 30px !important; }/*\n*/.TwitterPhoto-media{max-height:none;}/*\n*/#ProfileNav{float: right !important; width: 60% !important;}.dashboard { float: left !important; width: 100% !important;}.wrapper-settings .dashboard{ width: 30% !important;}.wrapper-settings .content-main{ width: 60% !important;}.ProfileCanopy-nav .ProfileNav-list{ padding-left: 250px !important;} .js-nav-links{width: 30% !important;} ';
document.getElementsByTagName('head')[0].appendChild(style);