Thank you Suchmoon for the script. This is the kind of thing i needed especially when I am out in a public place but need to discuss in the forum without people having to see my username.
However am not a geek in stuff involving webpages and script injections so i would love you guys to somehow guide me.
Where exactly do i put the code? Is it correctly put as shown in the picture?
Thanks
http://i.imgur.com/6E87CBv.pngAlmost right... Remove everything and paste this:
// ==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 { }
I also added a small line on it to only work on BitcoinTalk.