SteemMe
What feature(s) did you add?
V0.0.4 provides a single feature update for SteemMe. It is now possible to see your remaining bandwidth data of the current block. To save space and make the extension handy and easy to overview I also added the first step into a screen navigation logic.
By pressing more
a user will open the full overview for Statistics section. All other section will become invisible - animations are still missing to make the transition more beautiful. They will be added soon.
How did you implement it/them?
Basically I have implemented the logic how the bandwidth is calculated and then I created a Utils file to convert the bandwidth bytes in KB / MB / etc..
function bytesToSize(bytes) {
var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
if (bytes == 0) return '0 Byte';
var i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024)));
return (bytes / Math.pow(1024, i)).toFixed(2) + ' ' + sizes[i];
};
Roadmap
- V.0.0.4:
- Remaining Bandwidth Data
- First look at nav logic
- V.0.0.5:
- SBD / STEEM Price
- V.0.0.6:
- Statistics about earned SBD / SP over last Week
- V.0.1:
- UI
- More...
Contribute
Feel free to contribute by forking the GitHub Repo and creating Pull Requests. You can check the Roadmaps to find ideas, or you can implement your own stuff.
How to install it?
Please visit the Google Chrome Webstore and download the extension!
Go to your Extensions Tab and click options to set your Steemit Username
Posted on Utopian.io - Rewarding Open Source Contributors
Thank you for the contribution. It has been approved.
It is very helpful for the moderators when linking to the single commits.
You can contact us on Discord.
[utopian-moderator]
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hey @vladimir-simovic, I just gave you a tip for your hard work on moderation. Upvote this comment to support the utopian moderators and increase your future rewards!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Got it, I will link from now on the commits :)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
@moonrise, Upvote is the only thing I can support you.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hey @moonrise I am @utopian-io. I have just upvoted you!
Achievements
Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. Participate on Discord. Lets GROW TOGETHER!
Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit