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-03-19 提交的版本,檢視 最新版本

// ==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.3
// @grant       GM_addStyle
// ==/UserScript==




// Main - CSS hides some block elements and expands other main divs to 100% 

$(document).ready(function(){

var style2 = document.createElement('style');
style2.type = 'text/css';
style2.innerHTML = '.dashboard-right, .dashboard-left .trends'+
'{display:none !important;}'+
''+
'.home-exp-tweetbox,.content-main'+
'{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;}';
document.getElementsByTagName('head')[0].appendChild(style2);



});