Twitter Minimal - by Pushka.tv

removes suggestion boxes, info about cricket etc. -- Donate: - Fund-raising for my IT creations - https://pledgie.com/campaigns/28629 Donate through pledgie.com or PayPal -- https://flattr.com/profile/pushka - Donate through flattr.com

目前为 2015-05-01 提交的版本。查看 最新版本

// ==UserScript==
// @name        Twitter Minimal - by Pushka.tv
// @namespace   english
// @description removes suggestion boxes, info about cricket etc.  -- Donate: - Fund-raising for my IT creations -  https://pledgie.com/campaigns/28629 Donate through pledgie.com or PayPal --  https://flattr.com/profile/pushka - Donate through flattr.com
// @include     http*://*twitter.com*
// @version     1.20
// @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'+
'{display:none !important;}'+
''+
'.home-exp-tweetbox,.content-main,.DashboardProfileCard'+
'{width:100% !important;margin-left: 10px !important;}'+
''+
'.DashboardProfileCard-avatarLink'+
'{float:left !important;} '+
''+
'.DashboardProfileCard-bg'+
'{height: 50px !important;}'+
''+
'.DashboardProfileCard-userFields'+
'{  position: relative !important;  float: left !important;  margin-left: 5% !important;}'+
''+
'.DashboardProfileCard-stats'+
'{  position: relative !important;  float: left !important;  width: 50% !important;  margin-left: 10% !important;}'+
'.u-lg-size1of4 , .u-size1of3{display: none !important;}'+
'.u-lg-size2of3, .u-lg-size3of4{width: 100% !important;}'+
'.profilepage .AppContainer{margin-top: 30px !important; }'+
'.TwitterPhoto-media{max-height:none;}'+
'#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;} ';


document.getElementsByTagName('head')[0].appendChild(style);