Hide Steemit Payout/Wallet – Simple but Useful Chrome Extension


A user has left a feedback on @justyy ‘s Chrome Extension Hide SteemIt Payout,

This is great. Can you hide wallets too?

It seems she/he is not so happy about his/her payout. I think it makes sense to hide the wallet if you are not so interested in the payout figures. Keep it simple, keep calm and don’t waste time in checking your earnings from time to time.

Hiding the Wallet is easy, with a few lines of Javascript code in the extension:

1
2
3
4
5
var e = document.querySelectorAll("a[href*=transfers]");
for (var i = e.length - 1; i >= 0; -- i) {
    e[i].innerHTML = '';
    e[i].setAttribute("href", "#");
}
var e = document.querySelectorAll("a[href*=transfers]");
for (var i = e.length - 1; i >= 0; -- i) {
    e[i].innerHTML = '';
    e[i].setAttribute("href", "#");
}

This is how it looks, the steemit page looks much more cleaner:

steemit-hide-payout Hide Steemit Payout/Wallet - Simple but Useful Chrome Extension chrome extension SteemIt

steemit-hide-payout

Hide the payout/wallet, focus on content-writing instead of checking the figures. This is good for you, trust me 🙂

Available at Google Webstore

You may also like: 隐藏STEEMIT钱包,你能忍住不看么?

–EOF (The Ultimate Computing & Technology Blog) —

GD Star Rating
a WordPress rating system
298 words
Last Post: A Possible Steemit Advs Solution - Viglink
Next Post: How am I doing with SteemIt Curation Bot?

The Permanent URL is: Hide Steemit Payout/Wallet – Simple but Useful Chrome Extension

Leave a Reply