To view the thread list in update order regardless of VIPs:
(() => {
const tbody = document.getElementsByTagName ("tbody") [0]
const rows = Array.from (tbody.children)
const upd = e => e.children [3].children [0].textContent
rows.sort ((a, b) => { u = upd (a); v = upd (b); return u < v ? 1 : u > v ? -1 : 0; })
tbody.innerHTML = ""
rows.forEach (e => tbody.appendChild (e))
}) ()
To return to the VIP order reload the page.