您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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
当前为
// ==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.16 // @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);