zz Twitter Minimal - by Pushka.tv

removes suggestion boxes, info about cricket etc. - http://pushka.com/coding-donation

目前為 2018-08-24 提交的版本,檢視 最新版本

// ==UserScript==
// @name        zz 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.28
// @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);