Bit Ballie 👾
We've made a bookmark button that switches / toggles between steemit.com and steemd.com to help with STEEM workflows. It doesn't matter if you on a user or a users post it will switch between the front and back interfaces wherever you are with a single button.
What is a Bookmarklet?
https://www.freecodecamp.org/news/what-are-bookmarklets/
Open the glitch project and drag and drop the bookmark to your bookmark bar:
https://steem-tools.glitch.me/
Can also save a bookmark with the below as the link
javascript:if(window.location.hostname == 'steemit.com') { window.open('https://steemd.com'+location.pathname,'_self') }else{ window.open('https://steemit.com'+location.pathname,'_self') };