Skip to content

Instantly share code, notes, and snippets.

@sanscheese
Created March 6, 2024 12:00
Show Gist options
  • Save sanscheese/dc785010ae437a6ac97777c5ba7326a5 to your computer and use it in GitHub Desktop.
Save sanscheese/dc785010ae437a6ac97777c5ba7326a5 to your computer and use it in GitHub Desktop.
Bookmarklet to show commit times on GitHub
javascript:(function () { document.querySelectorAll("relative-time").forEach(function (el) { var p = el.parentNode; var t = el.title; var s = document.createElement("span"); s.innerHTML = t; p.removeChild(el); p.appendChild(s); }); })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment