It looks like you can remove the total karma score from your user page with document.querySelector(".UsersProfile-userMetaInfo").remove();, and that you can remove the karma scores from your comments with
document.querySelector(".UsersProfile-userMetaInfo").remove();
document.querySelectorAll('.UsersNameDisplay-userName[href="/users/steve2152"]').forEach(function(el) { el.closest('.CommentsItem-meta').querySelector('.OverallVoteAxis-voteScore').innerHTML = ''; })
I did this in the Firefox developer console, but it’s just JavaScript and should work in Tampermonkey?
It looks like you can remove the total karma score from your user page with
document.querySelector(".UsersProfile-userMetaInfo").remove();
, and that you can remove the karma scores from your comments withI did this in the Firefox developer console, but it’s just JavaScript and should work in Tampermonkey?