Post
Topic
Board Meta
Topic OP
Hiding your Profile name in Public place ?
by
Crypto Library
on 24/06/2023, 20:42:26 UTC
Wow, a useful thread came across while exploring (Hide my name). I would like to thank the OP and whoever created those useful scripts. I have also felt uneasy many times because of my name coming out in public places while browsing the forum. And now it will not happen again by using this script.
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.

quoting for fast view:
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";
} catch { }