SInce i've been streaming recently, I've had to face the issue of my credits displayed while going through the bazaar.
So here is a tiny line to use in Stylish (or other extention that adds CSS) that will hide the credits coutner everywhere in HV:
CODE
#networth
{
display: none !important;
}
Alternatively, that can be used in Tampermonkey, but tjhe coutner will blink before disappearing, due to how Javascript works:
CODE
// ==UserScript==
// @name StealthHVBank
// @namespace e-hentai
// @description Hides the credits counter in HentaiVerse
// @match *://*.hentaiverse.org/*
// @version 0.1
// @grant none
// ==/UserScript==
document.getElementById('networth').style.display = 'none';
I'll see if I can add that in HV Toolbox later. For now, this will have to do.