This is an automated archive made by the Lemmit Bot.
The original was posted on /r/roms by /u/Beevmantis on 2023-11-02 00:33:16.
I made a small script to remove games that aren’t in the region I want from Myrient’s website.I noticed that their search function would leave all games that had the 3 letters “USA”, and to top that off it would only hide the links that it filtered out. This means it would still try to download all links when using tools like FreeDownloadManager.
Coincidentally the script works on internet archives as well since they use a similar HTML structure :)
To use, open up the browsers console. Cmd + Option + J" (on a Mac) or “Ctrl +Shift +J” (on Windows) or right click > inspect > navigate to console. Then simply paste the script in the console and press enter. If it’s a long list it may take some time, please be patient.
This script will filter the list down to USA region and remove demos & betas as well.
const elRows = document.getElementsByTagName("tr");
for (let i = 2; i < elRows.length;) {
const text = elRows[i].innerText;
if ( text.includes("(USA)") ) {
const alts = text.includes("Demo") || text.includes("Beta");
if (alts) {
elRows[i].remove();
} else {
i++
}
} else {
elRows[i].remove()
}
};
This script will filter the list down to USA region and remove demos & betas as well
const elRows = document.getElementsByTagName("tr");
for (let i = 2; i < elRows.length;) {
const text = elRows[i].innerText;
if ( text.includes("(USA)") ) {
elRows[i].remove();
i++
} else {
elRows[i].remove()
}
};