you know that button - the clickable new button shows at the end of the thread title that takes you the the latest posts in a thread... can it be moved to the front?
In the meanwhile...
// ==UserScript==
// @name Move NEW to beginning
// @match https://bitcointalk.org/index.php?board=*
// @grant none
// @version 1.0
// @author TryNinja
// ==/UserScript==
[...document.querySelectorAll("a[id*='newicon']")].forEach(a => {
const td = a.closest('td.windowbg');
if (td) {
const b = td.querySelector('b');
if (b) {
b.parentNode.insertBefore(a, b);
}
}
});