瀏覽單個文章
michelle-lai529
Regular Member
 

加入日期: Jun 2010
文章: 86
加入了一些預設的阻擋帳號,有興趣的直接貼在竄改猴的腳本裡就行了,有需要增加或修改的帳號在自行於『hideIDArray』陣列中修改

竄改猴外掛
https://chromewebstore.google.com/d...ejmpbldmpobfkfo

---------以下為原始碼,請自行取用----------

// ==UserScript==
// @name pcdvd隱藏發文
// @namespace http://tampermonkey.net/
// @version 2024-05-23
// @description pcdvd隱藏發文
// @author You
// @match https://www.pcdvd.com.tw/forumdisplay.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'
];

$("span").each(function( index ){
if(hideIDArray.indexOf($(this).text())>=0){
$(this).closest('tr').css("display", "none");
}
});
})();
舊 2024-05-23, 05:18 PM #58
回應時引用此文章
michelle-lai529離線中