Skip to content

Instantly share code, notes, and snippets.

@LewisGet
Created July 31, 2022 10:05
Show Gist options
  • Save LewisGet/81c049353cc350ea23510d31aa4dad44 to your computer and use it in GitHub Desktop.
Save LewisGet/81c049353cc350ea23510d31aa4dad44 to your computer and use it in GitHub Desktop.
/** list pages */
var href_lists = document.querySelectorAll(".spoilerbody")[2].querySelector("td").querySelectorAll("a");
var url_replace = "/files/all?filter-game-version=2020709689%3A6756";
href_lists.forEach(function(v){
v.href = v.href + url_replace;
v.click();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment