您需要先安装一个扩展,例如 篡改猴、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.2 // @grant GM_addStyle // ==/UserScript== // Main - CSS hides some block elements and expands other main divs to 100% $(document).ready(function(){ var style = document.createElement('style'); style.type = 'text/css'; style.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(style); });