吾爱增强美化

精简美化

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Author
MarsTLBAD
Daily installs
0
Total installs
259
Ratings
2 0 0
Version
2021.9.26
Created
2021-08-16
Updated
2021-09-26
Size
6.52 KB
License
GPL-3.0 License
Applies to

// ==UserScript==
// @name 吾爱增强美化
// @version 2023.5.9
// @author MarsTLBAD
// @description 精简美化
// @match *://www.52pojie.cn/*
// @icon https://www.52pojie.cn/favicon.ico
// @grant GM_registerMenuCommand
// @grant GM_unregisterMenuCommand
// @grant GM_openInTab
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_notification
// @license GPL-3.0 License
// @run-at document-start
// @namespace https://greasyfork.org/scripts/412681
// ==/UserScript==

(function() {
'use strict';
var menu_ALL = [
['menu_rule', '隐藏版规', '隐藏版规', false]
], menu_ID = [];
for (let i=0;i menu_ALL.length){ // 如果菜单ID数组多于菜单数组,说明不是首次添加菜单,需要卸载所有脚本菜单
for (let i=0;i td.icn > a");
for (let i = aList.length - 1; i > -1; i--) {
let a = aList[i];
if (a.getAttribute('title').indexOf('全局置顶主题') != -1) {
a.closest('tbody').remove();
}
}
//}

function addStyle() {
let style,
style_1 = `.bml {display:none !important;}`,
style_2 = `
#postlist .zoom, #postlist .plc .tattl img {
max-height: 600px !important;
width: auto !important;
box-shadow: 0px 0px 3px #444444;// 设置文章图片阴影,避免某些白底图片无法看清边界
}

a[href="connect.php?mod=config"], #toptb, #navmenu, .vw50_kfc_pt , #threadlisttableid > tbody:nth-of-type(1) ,#threadlisttableid > tbody:nth-of-type(2) , #threadlisttableid > tbody:nth-of-type(3) ,#threadlisttableid > tbody:nth-of-type(4) ,#threadlisttableid > tbody:nth-of-type(5) ,#threadlisttableid > tbody:nth-of-type(6) ,#threadlisttableid > tbody:nth-of-type(7) ,#threadlisttableid > tbody:nth-of-type(8) ,#threadlisttableid > tbody:nth-of-type(9) ,#threadlisttableid > tbody:nth-of-type(10) ,#threadlisttableid > tbody:nth-of-type(11) ,#threadlisttableid > tbody:nth-of-type(12) ,#threadlisttableid > tbody:nth-of-type(13) ,#threadlisttableid > tbody:nth-of-type(14) ,#threadlisttableid > tbody:nth-of-type(15) ,#nv_ph, #nv, #pt .y, #chart, #ft, #custominfo_pmenu, #loadad2, #aswift_0, .aimg_tip, .wp a_f hm, .bm.lk, .bm.bmw.fl, .dnch_eo_pt, .dnch_eo_pr, .dnch_eo_mu, .dnch_eo_f, ul.xl.xl2.o.cl, dl.pil.cl, td.plc.plm, .dnch_eo_pb, .dnch_eo_pt, .pls .avatar img, .pls .side-star, .pls .side-group, .res-footer-note, .scbar_hot_td, .md_ctrl, .pls.favatar .xg1 {
display:none !important;
}

@media (min-width:1366px) {
#postlist .favatar.pls .avatar img {
margin:0 0 2px;
}
.wp {
width: 92%;
}
.pls .avatar img {
width:100px;
height:100px;
//background:none;
padding:0;
border:4px solid #ffffff
}
.avtm img {
width:60px;
}
}
.pls .avatar {
text-align:center;
}
.t_fsz {
min-height:15px;
}
.pls .pi {
text-align:center;
padding:10px 0 0 0;
border:none;
overflow:visible;
}
.xw1 {
font-size:15px;
}
textarea#fastpostmessage {
background:none !important;
}
.pcb img {
max-width:60%;
margin:4px;
}
.rate {
margin:0;
}
.ratl td {
padding:0px;
}
.xw1 {
font-size:12px;
font-weight:500;
}
.xi2,.xi2 a,.xi3 a {
color:red;
}
.toptitle_7ree td {
border-top: 1px solid #CDCDCD;
}
.mtw {
margin-top:0px !important;
}

#p_btn {
padding:0px;
margin:0 0 0 1px;
display:flex;
justify-content:space-evenly;
}
#scbar {
border-top:0;
border-bottom:0;
background:0;
}

/* 链接点击后颜色变浅(灰白色)*/
.tl th a:visited, .tl td.fn a:visited {
color: #aaa;
}`;

//style_Add = document.createElement('style');
style = style_2
if (menu_value('menu_rule')) style += style_1;
/*
style_Add.innerHTML = style;
if (document.head) {
document.head.appendChild(style_Add);
} else {
let timer = setInterval(function(){
if (document.head) {
document.head.appendChild(style_Add);
clearInterval(timer);
}
}, 1);
}
*/
document.lastChild.appendChild(document.createElement("style")).textContent = style;
}
})();