Hacker News new | ask | show | jobs
by weirdcat 4618 days ago
Nice, thanks! I didn't find one on your page, so I made a quick bookmarklet to open the chart:

  javascript:id=document.location.href.match(/id=(\d+)/)[1];document.location='http://hnlike.com/hncharts/chart/?id='+id
Edit: rewritten to open it in a new tab:

  javascript:(function(){var id=document.location.href.match(/id=(\d+)/)[1];url='http://hnlike.com/hncharts/chart/?id='+id;var w=window.open(url, '_blank'); w.focus();})()