Steemd and Steemstats are the tools I use most frequently with Steemit, and today,
I created a bookmarket to save my few seconds everyday.
Steemit 관련 툴중에 저는 Steemd랑 Steemstats을 가장 많이 사용하는것 같은데요, 매번 URL에 복붙하는 몇초의 시간 낭비를 줄여보고자 간단한 북마클릿을 제작 해 봤습니다.
You can open a small popup window that shows Steemd or Steemstats on the top of currently viewing profile by clicking a bookmarklet on the bookmark bar.
북마크바의 아이콘을 눌러서 Steemd 또는 Steemstats 사이트를 팝업으로 띄울 수 있습니다.
Example with Steemstats first.
javascript:window.open('//www.steemstats.com/#!/' + (location.pathname.match(/(@[^\/$]+)/) ? location.pathname.match(/(@[^\/$]+)/)[1].replace('@', '') : ''),'Steemstats','width=900, height=700, resizable=yes, scrollbars=yes, left=' + (screen.width-900)/2 + ', top=' + (screen.height-700)/2);
Here is an example of how to do it in Chrome browser:
(* If you don't see the bookmark bar on the top, Go to Top right side menu -> Bookmarks -> Show Bookmarks bar to enable it)
먼저 Steamstats 북마클릿을 추가해봅시다.
javascript:window.open('//www.steemstats.com/#!/' + (location.pathname.match(/(@[^\/$]+)/) ? location.pathname.match(/(@[^\/$]+)/)[1].replace('@', '') : ''),'Steemstats','width=900, height=700, resizable=yes, scrollbars=yes, left=' + (screen.width-900)/2 + ', top=' + (screen.height-700)/2);
크롬 브라우져에서 하시는 법은 위의 이미지를 보시면 됩니다.
(* 페이지 상단에 북마크바가 보이지 않으신다면 오른쪽 상단 메뉴 -> 북마크 -> 북마크바 표시 로 활성화 시키실 수 있습니다.)
You can do the same thing to add Steemd bookmarklet.
Here is the code for Steemd.
javascript:window.open('//steemd.com/' + (location.pathname.match(/(@[^\/$]+)/) ? location.pathname.match(/(@[^\/$]+)/)[1] : ''), 'Steemd', 'width=500, height=600, resizable=yes, scrollbars=yes, left=' + (screen.width-500)/2 + ', top=' + (screen.height-600)/2);
Steemd 북마클릿을 등록하시려면 똑같은 방법으로 아래의 코드를 복사하셔서 만드시면 됩니다.
javascript:window.open('//steemd.com/' + (location.pathname.match(/(@[^\/$]+)/) ? location.pathname.match(/(@[^\/$]+)/)[1] : ''), 'Steemd', 'width=500, height=600, resizable=yes, scrollbars=yes, left=' + (screen.width-500)/2 + ', top=' + (screen.height-600)/2);