精简weibo页面样式,用微博作为个人微型博客、个人笔记或简单wiki,记录生活感悟和技术要点。
// ==UserScript==
// @name 极简weibo.com 个人微型博客
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 精简weibo页面样式,用微博作为个人微型博客、个人笔记或简单wiki,记录生活感悟和技术要点。
// @author You
// @match https://*.weibo.com/*
// @grant GM_addStyle
// @run-at document-start
// ==/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;
}
`)
})();