I sometimes want to hide comments I’ve already read so that it’s easier for me to find the unread comments of a story I revisit. I made a bookmarklet for this: <pre lang=“js”><code>document.querySelectorAll(“.comment:not(:has(.comment_unread))”).forEach((comment) => comment.style.display = “none”) </code></pre> Would this (with a better UX design) be an interesting feature for others?