SteemMe V0.0.8 (Commit)
What feature(s) did you add?
Changelog:
- Added a Graph to show earned SBD of last week
How did you implement it/them?
Changelog:
- Added a Graph to show earned SBD of last week:
The Graph / Chart is displayed via ChartJS. To retrieve the account historygetAccountHistory
from SteemJS is used.
To check if the history dates are inside the last week this function was created:
function isOlderThanOneWeek(date) {
const today = new Date();
const emptyToday = new Date(today.getFullYear(), today.getMonth(), today.getDate(), 0, 0, 0);
const previousWeek = new Date(emptyToday.getTime() - 6 * 24 * 60 * 60 * 1000);
return (previousWeek.getTime() > date.getTime()) && (date.getTime() < emptyToday.getTime());
}
Roadmap
- V.0.0.8:
- Statistics about earned SBD / Steem 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
Proof for GitHub
benediktveith is my main GitHub account.
Check here for another proof
Posted on Utopian.io - Rewarding Open Source Contributors
Thank you for the contribution. It has been approved.
You can contact us on Discord.
[utopian-moderator]
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit