Post
Topic
Board Meta
Merits 2 from 2 users
Re: Little things that bug you/me about the forum
by
TryNinja
on 22/07/2024, 02:12:40 UTC
⭐ Merited by vapourminer (1) ,Cyrus (1)
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...

Code:
// ==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);
        }
    }
});