SteemTools Chrome Extension
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 Source of SteemTools
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 Google Webstore.
If you are using Firefox, you can still install this Extension by Chrome Extension Foxified.
New Features of v0.0.5
SteemTools Version 0.0.5 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
Github.
Screenshots of SteemTools
Query button is disabled.

query-button-disabled
Reveal Deleted Comments for a given Steem ID.

reveal-deleted-comments
Save the source for later during your prototyping

steem-js-console-save-button
How to Restore the Full URL given SteemIt permlink in Javascript?
The following restores a full Steem URL given a permlink.
// given a perm link restore its full Steem URL
const GetSteemURL = (permlink) => {
var pat = /(re-\w+-)*((\w+\-)*)/g;
var my = pat.exec(permlink);
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
License
MIT
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) —
912 words
Last Post:
Add 'Steem-JS' console to SteemTools! Next Post:
Introduction to CoinTools! A Cryptocurrency Chrome Extension
SteemTools v0.0.5 – Reveal Deleted Comments, Load and Save Steem-Js!
SteemTools Chrome Extension
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 Source of SteemTools
https://github.com/DoctorLai/SteemTools/
Previous Contributions
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 v0.0.5
SteemTools Version 0.0.5 has the following new features:
Commits
Github.
Screenshots of SteemTools
Query button is disabled.
query-button-disabled
Reveal Deleted Comments for a given Steem ID.
reveal-deleted-comments
Save the source for later during your prototyping
steem-js-console-save-button
How to Restore the Full URL given SteemIt permlink in Javascript?
The following restores a full Steem URL given a permlink.
// given a perm link restore its full Steem URL const GetSteemURL = (permlink) => { var pat = /(re-\w+-)*((\w+\-)*)/g; var my = pat.exec(permlink); 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
License
MIT
Chrome Webstore
Install the SteemTools Chrome Extension Now!
Contribution Welcome
Github: https://github.com/DoctorLai/SteemTools
–EOF (The Ultimate Computing & Technology Blog) —
912 wordsLast Post: Add 'Steem-JS' console to SteemTools!
Next Post: Introduction to CoinTools! A Cryptocurrency Chrome Extension
Related posts: