SteemTools
SteemTools is inspired by its sister project: Utopian Moderators & Supervisors and it provides a set of useful data, tools, statistics for SteemIt Users.
SteemTools so far has got a few positive feedbacks, Thanks! As its name suggests, SteemTools is a chrome extension that contains a few useful tools, a few useful data for SteemIt Users.
Github
https://github.com/DoctorLai/SteemTools/
Previous Contributions
- SteemTools v0.0.4 Add 'Steem-JS' console to SteemTools!
- SteemTools v0.0.3 New Features: Query Delegators and Nodes/Server Configuration
- SteemTools v0.0.2 New Features: Query Delegatees and Basic Search and More
- SteemTools v0.0.1
Technology Stack
Javascript that runs in the Chrome Browser (Chrome Extension)
Chrome Webstore
It is online, and you can install SteemTools via:
https://chrome.google.com/webstore/detail/steem-tools/emjfpeecopppojbhkigjjmcahbfahhbn
If you are using Firefox, you can still install this Extension by Chrome Extension Foxified
New Features of v0.0.5
This version has the following new features.
- Load & Save Steem-JS source so you can save your prototyping code in the Chrome Extension and it will load it next time automatically when you launch the SteemTools
- Query buttons are disabled when API not return yet.
- You can now restore the comments in the steem block chain!
Commits
Screenshots
Save the source for later during your prototyping
Query button is disabled.
Reveal Deleted Comments for a given Steem ID.
Some code in the Commit
The following restores a full Steem URL given a permlink
// given a perm link restore its full Steem URL
const restore = (url) => {
var pat = /(re-\w+-)*((\w+\-)*)/g;
var my = pat.exec(url);
if (my[1] && my[2]) {
var author = my[1].split('-')[1];
var link = my[2].slice(0, -1);
return 'https://steemit.com/@' + author + '/' + link;
}
return null;
}
Roadmap of Steem Tools
- UI Language Setting
- Add Downvote Checker
- Add Delegator/Delegatee List Checker
- Steemit Top 100 Delegations
- SteemIt Followers/Votes Checker
- Steemit Incoming Votes Report
- Steemit Payout Report
- Steemit Outgoing Votes Report
- Steemit Who Resteem Your Posts?
- Steemit Recover Deleted Posts/Comments
- Steemit Powerdown Status
- and more...
License
Contribution Welcome
Github: https://github.com/DoctorLai/SteemTools/
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -am 'Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request.
Chrome Webstore
Install the SteemTools Chrome Extension Now!
Posted on Utopian.io - Rewarding Open Source Contributors