But one new request to you guys, In this script, only the above name and avatar can be hidden, but when entering the profile summary, it shows the user name, so another request to you guys is to create a script that hides the name in the profile summary as well.
Thanks.
I agree to the reasons mentioned of it's rare time to visit my summary page so i don't mind to that but if you think its very important to hide those details you can add this add this line in the "try" block.
document.querySelector("tr.titlebg > td").style.visibility = "hidden";
document.querySelector("td.windowbg > table > tbody > tr > td:nth-child(2) ").style.visibility = "hidden";
document.getElementsByClassName("avatar")[1].style.visibility = "hidden";
The first line will Remove all in that part including the "Summary - (Username)". I can't think anyway to remove only the username. -.-
Final code
// ==UserScript==
// @name Hide BitcoinTalk Username and Avatar
// @include https://bitcointalk.org/*
// @version 1
// @grant none
// ==/UserScript==
try {
document.getElementById("smfheader").style.visibility = "hidden";
document.getElementById("hellomember").style.visibility = "hidden";
document.getElementsByClassName("avatar")[0].style.visibility = "hidden";
document.querySelector("tr.titlebg > td").style.visibility = "hidden";
document.querySelector("td.windowbg > table > tbody > tr > td:nth-child(2) ").style.visibility = "hidden";
document.getElementsByClassName("avatar")[1].style.visibility = "hidden";
} catch { }