瀏覽單個文章
星空晚風
Regular Member
 

加入日期: Aug 2018
文章: 96
如果會用 Violetmonkey 或是 Tampermonkey 的話,可以用下面這個 Script,這是以前一個好心的 PCDVD 網友寫的

// ==UserScript==
// @name PCDVD 隱藏發文
// @namespace http://tampermonkey.net/
// @version 2024-06-11
// @description pcdvd隱藏發文
// @author You
// @match https://www.pcdvd.com.tw/forumdisplay.php*
// @match https://www.pcdvd.com.tw/showthread.php*
// @icon
// @require https://code.jquery.com/jquery-1.11.0.min.js
// @grant none
// ==/UserScript==

(function() {
//隱藏發文ID清單陣列
var hideIDArray = [
'ytb0315'
,'w8433'
,'s95526'
,'kkdah'
,'lineytb0315'
,'kk00336'
,'jk141k'
,'ankk'
,'chumowu'
,'cp03'
,'jeffk'
,'LDSKING'
,'LDSKING II'
,'leeking'
,'leeko'
,'MyChris'
,'River Spinach'
,'smoguli'
,'Whole Truth'
,'wpc0406'
,'YorkHapy'
,'冬之炎陽'
,'冰的啦魔王大人'
,'沒問題'
,'爆走企鵝'
,'tvt'
,'hill45678'
,'rcack'
,'卜派'
,'polor'
,'LeeMichael'
,'老老濕'
,'Adsmt'
,'u90219172'
,'Fly Pig'
,'銀鐵人'
,'pledi'
,'LDSKINGII'
,'不當的字眼'
,'ㄧ本道'
,'NT-MAN'
,'蠻荒'
,'SUNGF'
,'Erik Lehnsherr'
,'aniceperson'
,'anderson1127'
,'古得拉'
,'workduck'
,'kize'
,'pcdvd.02@hotmai'
];

//隱藏名單發文主題
$("span").each(function( index ){
if(hideIDArray.indexOf($(this).text())>=0){
$(this).closest('tr').css("display", "none");
}
});

//隱藏名單發文內容
$(".bigusername").each(function( index ){
if(hideIDArray.indexOf($(this).text())>=0){
$(this).closest('.tborder').css("display", "none");
}
});

//隱藏名單發文內容被引用及黑名單標示
$("strong").each(function( index ){
if(hideIDArray.indexOf($(this).text())>=0){
$(this).closest('table').css("display", "none");
}
});

//隱藏列表及發文內容下方方格區塊
$(document).ready(function(){
$("#_popIn_recommend").hide();
$("#_popIn_recommend_word").hide();
});

})();

這樣版面就會很乾淨了
舊 2025-02-12, 09:05 PM #35
回應時引用此文章
星空晚風離線中