// ==UserScript== // @name 极简weibo.com blog // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://*.weibo.com/* // @grant GM_addStyle // @downloadURL none // ==/UserScript== (function() { 'use strict'; GM_addStyle(` #v6_pl_ad_yaoyaofans, #plc_bot, #v6_pl_leftnav_group, .WB_main_r, .PCD_header, .WB_frame_b, #pl_common_footer, #v6_pl_content_homefeed, .gn_logo, .gn_search_v2, .gn_nav_list > li:nth-child(-n + 4), .face, .WB_info, .WB_feed_handle, #WB_webchat { display: none !important; } body, .S_page, .S_page .WB_miniblog { background-image: none !important; } .WB_detail { margin-left: 6px !important; } .WB_frame_a, .B_page .WB_frame, .WB_frame_c { width: 800px; } .WB_global_nav .gn_header { width: 280px; } `) })();