Show HN: Add the Missing “My Posts” & “My Comments” Links on Top of HN Website
1–3 of 3 posts
Re: Show HN: Add the Missing “My Posts” & “My Comments” Links on Top of HN Website
#2This 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.
Re: Show HN: Add the Missing “My Posts” & “My Comments” Links on Top of HN Website
#3Probably worth looking into this existing project: https://github.com/etcet/HNES