Skip to content

Instantly share code, notes, and snippets.

@uahim
Last active May 4, 2025 12:40
Show Gist options
  • Save uahim/f6d0b637efd1fe1d5183fef024eaffb3 to your computer and use it in GitHub Desktop.
Save uahim/f6d0b637efd1fe1d5183fef024eaffb3 to your computer and use it in GitHub Desktop.
manually save your viewing history; works from console
var mlnk ="";
for (var i = 0, l = document.getElementsByTagName("ul")[3].getElementsByTagName("li").length -1; i < l; ++i) {
var mydate = document.getElementsByClassName("date")[i].innerText.split(".")
if (mydate[1] < 10) { month = "0"+mydate[1] } else { month = mydate[1] }
mlnk += mydate[0] + "." + month + "." + mydate[2] + "\t";
mlnk += document.getElementsByClassName("title")[i].innerText + "\n";
}
copy(mlnk)
@uahim
Copy link
Author

uahim commented May 4, 2025

this works from the console/developer tools and saves the in-browser viewing history like this:

17.03.22[TAB CHARACTER]Bigbug

sorted chronologically, newest first/on top.

load as many pages as you need, then fire the code above and you're done.

no need to request the csv anymore!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment