Greasy Fork is available in English.

屏蔽天下第二

try to take over the world!

Ajankohdalta 11.1.2020. Katso uusin versio.

// ==UserScript==
// @name         屏蔽天下第二
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  try to take over the world!
// @author       大西瓜一块五一斤
// @match        https://bbs.csdn.net*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    // Your code here...
    var authors=document.getElementsByClassName("forums_author");
    var worldSecond='https://my.csdn.net/BlueGuy__';
    for (var j=0;j<authors.length;j++){
        if(authors[j].children[0].href==worldSecond){
            authors[j].parentElement.style.display="none";
        }
    }
    //增加论坛首页热帖屏蔽
    authors=document.getElementsByClassName("questioner");
    for (j=0;j<authors.length;j++){
        if(authors[j].href==worldSecond){
            authors[j].parentElement.style.display="none";
        }
    }

})();