Scripting for Fun (9)

7 Name: Nameless : 2026/03/21 00:16

// Eternal Winter has returned, so I decided to back up its data in case it disappears again.
// Paste the following into your browser's dev conosole.

rows = Array.from(document.querySelectorAll('div.about + hr + table tr')).map((tr) => {
tds = tr.querySelectorAll('td');
if (tds.length) {
return {
name: tds[0].innerText,
url: tds[0].querySelector('a').href,
summary: tds[1].innerText,
category: tds[2].innerText,
added: tds[3].innerText
}
} else {
return {}
}
})
rows.shift()
copy(JSON.stringify(rows, ' ', 2))

// The data
https://files.catbox.moe/s5nxsh.json
Name: E-Mail:
Leave these fields empty (spam trap):