Created
July 31, 2022 10:05
-
-
Save LewisGet/81c049353cc350ea23510d31aa4dad44 to your computer and use it in GitHub Desktop.
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
/** 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