Hacker News new | ask | show | jobs
by unraveller 697 days ago

    javascript: (() => {     const id = window.location.href.match(/\d+$/g)[0];     window.open(`https://hn.algolia.com/?dateRange=all&page=0&prefix=false&query=story:${id}&sort=byDate&type=comment`)%20%20%20})();
bookmarklet shows you the latest story comments and you can usually tell where they belong or dig in to find out eg:

https://hn.algolia.com/?dateRange=all&page=0&prefix=false&qu...

reddit style comment threads: https://hacker-read-it.netlify.app/item/40965892

there is also chan style: https://hnchan.netlify.app/thread/40937119

cleaner hackerdaily tree style: https://hackerdaily.io/40955693/comments

flat style: https://ditzes.com/item/40937119

There is also one I cannot find at the moment which let you click and open each comment thread in the right side of screen, that was very good. edit: found it: https://hzn.jero.zone

1 comments

nice.

here's a slightly shorter version:

  javascript:open(`https://hn.algolia.com?dateRange=all&prefix=false&query=story:${location.href.match(/\d+$/)[0]}&sort=byDate&type=comment`)