Live data from Hacker News

Show HN: Add the Missing “My Posts” & “My Comments” Links on Top of HN Website

gist.github.com

1–3 of 3 posts

Re: Show HN: Add the Missing “My Posts” & “My Comments” Links on Top of HN Website

#2
This really doesn't require a heavy jQuery dependency. I also don't know why the font related style changes are necessary.

You could rewrite this script to be as simple as:

    const me = document.querySelector("a#me").innerText;
    const header = document.querySelector("span.pagetop");
    header.innerHTML = header.innerHTML + "| my posts |";
    header.innerHTML = header.innerHTML + " my cmts |";

Much more efficient and does the job without the heavy jQuery dependency.

I do commend your initiative though, and I'm sure many users will get much use of this.