Introduction to SteemTools
SteemTools is a Chrome Extension that aims to provide useful tools and data for SteemIt Users.
SteemTools Open Source
Github: https://github.com/DoctorLai/SteemTools/
Previous Versions
- SteemTools v0.0.8 Update: Witness Lookup
- SteemTools v0.0.7: Query Powerdown Status, Add SBDS API Server (Backend), Fix Voting Power
- SteemTools v0.0.6 Check Who Downvoted You + API Server Ping
- SteemTools v0.0.5 Reveal Deleted Comments, Load & Save Steem-Js!
- SteemTools v0.0.4 v0.0.4 Add ‘Steem-JS’ console to SteemTools!
- SteemTools v0.0.3 v0.0.3 New Features: Query Delegators and Nodes/Server Configuration
- SteemTools v0.0.2 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 Google Webstore.
If you are using Firefox, you can still install this Extension by Chrome Extension Foxified.
New Features of SteemTools v0.0.9
Commit here. This version has the wallet tab that allows you to send money easily to multiple addresses at the same time.
Wallet Tab
You need to configure you Steem ID and Private Active Key if you want to use this feature! PS: Your Keys are only stored locally in your Chrome browser!
Click Send requires a confirmation.
Steem-Js Sending SBD/STEEM
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | if (confirm("Send " + amount.toFixed(3) + " " + unit + " to " + addresses.join(',') + " with MEMO=" + memo + "?")) { let active_key = $("input#posting_key").val().trim(); for (let i = 0; i < count; ++ i) { let who = addresses[i].trim().replace('@', ''); if (who.length > 0) { logit($('textarea#console_wallet'), "Sending " + amount.toFixed(3) + " " + unit + " to @" + who + "..."); steem.api.setOptions({ url: $("select#nodes").val() }); steem.broadcast.transfer(active_key, from_user, who, amount + " " + unit, memo, function(err, result) { if (err) { logit($('textarea#console_wallet'), err); } else { console.log(result); logit($('textarea#console_wallet'), amount.toFixed(3) + " " + unit + " sent from @" + from_user + " to @" + who); } }); } } } |
if (confirm("Send " + amount.toFixed(3) + " " + unit + " to " + addresses.join(',') + " with MEMO=" + memo + "?")) { let active_key = $("input#posting_key").val().trim(); for (let i = 0; i < count; ++ i) { let who = addresses[i].trim().replace('@', ''); if (who.length > 0) { logit($('textarea#console_wallet'), "Sending " + amount.toFixed(3) + " " + unit + " to @" + who + "..."); steem.api.setOptions({ url: $("select#nodes").val() }); steem.broadcast.transfer(active_key, from_user, who, amount + " " + unit, memo, function(err, result) { if (err) { logit($('textarea#console_wallet'), err); } else { console.log(result); logit($('textarea#console_wallet'), amount.toFixed(3) + " " + unit + " sent from @" + from_user + " to @" + who); } }); } } }
Roadmap of Steem Tools
- UI Language Setting
- SteemIt Powerdown Checker
- 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
- Steemit Account Witness
- and more tools…
License
Chrome Webstore
Install the SteemTools Chrome Extension Now!
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.
–EOF (The Ultimate Computing & Technology Blog) —
Last Post: CoinTool Update: Arbitrary Historical Date Period + Amount Conversion to Local Currency + Preserve Historical Graphs
Next Post: AWK Tutorial: How often do you generate a Witness Block? (SteemIt)