mirror of
https://github.com/XIU2/UserScript.git
synced 2026-07-09 10:55:22 +00:00
59 lines
1.7 KiB
JavaScript
59 lines
1.7 KiB
JavaScript
// ==UserScript==
|
|
// @name 智友邦论坛美化
|
|
// @version 1.0.2
|
|
// @author X.I.U
|
|
// @description 精简多余内容、样式优化、宽屏显示
|
|
// @icon http://bbs.zhiyoo.net/favicon.ico
|
|
// @match *://bbs.zhiyoo.net/*
|
|
// @license GPL-3.0 License
|
|
// @run-at document-start
|
|
// @namespace https://greasyfork.org/scripts/412361
|
|
// @supportURL https://github.com/XIU2/UserScript
|
|
// @homepageURL https://github.com/XIU2/UserScript
|
|
// ==/UserScript==
|
|
|
|
'use strict';
|
|
(function() {
|
|
let style_Add = document.createElement('style');
|
|
style_Add.innerHTML = `
|
|
/* 精简多于内容 */
|
|
.forum_top,#main_sidebar,.drag,.nav,.tps,.bm.bml,.ct2 .sd,.mn div.box.cl:nth-of-type(3),#f_pst,.plc.plm,#diy_like1,#hm_qrcode_main,#ft,.po.bbd.reply_p,.ft_top.cl,div a[href="https://weibo.com/372458419"] {
|
|
display: none !important;
|
|
}
|
|
/* 调整主体宽度(因为隐藏了右侧侧栏) */
|
|
.ct2 .mn,#wp .forum-left,#thread_types1 {
|
|
width: auto !important;
|
|
}
|
|
/* 隐藏底部 */
|
|
#footer {
|
|
height: 0 !important;
|
|
margin: 0 !important;
|
|
}
|
|
/* 调整帖子内,标题文字大小 */
|
|
#thread_subject {
|
|
font-size: 19px !important;
|
|
}
|
|
/* 调整帖子内,隐藏内容提示区域样式 */
|
|
.locked a {
|
|
color: #ffffff;
|
|
border: 1px dashed #ffffff;
|
|
padding: 0 5px 3px;
|
|
margin: 0 5px;
|
|
font-size: 20px;
|
|
background-color: #e24e72;
|
|
}
|
|
/* 调整帖子内,图片最大宽度(即一排可以放三个图片) */
|
|
#postlist .pcb img {
|
|
max-width: 30%;
|
|
}`;
|
|
if (document.head) {
|
|
document.head.appendChild(style_Add);
|
|
} else {
|
|
let timer = setInterval(function(){
|
|
if (document.head) {
|
|
document.head.appendChild(style_Add);
|
|
clearInterval(timer);
|
|
}
|
|
}, 1);
|
|
}
|
|
})(); |