>>/10264/
> I don't see anywhere that it tells us what post number on the thread we're on (like 150/751)? 
 >>/10277/

Post count can be done with custom javascript.
Open the developer tools, drop it in the console.

DO NOT RUN UNTRUSTED JAVASCRIPT, VERIFY IT FIRST

Hacked up example below; not by any means ideal but works:


var nav = document.querySelector('nav')

var span1 = document.createElement('span')
span1.innerText = '[ postCount: ';

var postCount = document.createElement('span');
postCount.id = 'postCount';

postCount.innerText = Array.from(
   document.querySelectorAll('div.innerPost')
).length;

var span2 = document.createElement('span')
span2.innerText = ']';

nav.appendChild(span1);
nav.appendChild(postCount);
nav.appendChild(span2);

setInterval(() => {
   postCount.innerText = Array.from(
      document.querySelectorAll('div.innerPost')
   ).length
}, 5 * 1000)