Last active
May 4, 2025 12:40
-
-
Save uahim/f6d0b637efd1fe1d5183fef024eaffb3 to your computer and use it in GitHub Desktop.
manually save your viewing history; works from console
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this works from the console/developer tools and saves the in-browser viewing history like this:
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!