Anonymous
10/06/2019 (Sun) 02:16:39
No.10580
del
>>10264>I don't see anywhere that it tells us what post number on the thread we're on (like 150/751)? >>10277Post count can be done with custom javascript.
Open the developer tools, drop it in the console.
DO NOT RUN UNTRUSTED JAVASCRIPT, VERIFY IT FIRSTHacked up example below; not by any means ideal but works:
var nav = document.querySelector('nav')
var span1 = document.createElement('span')
span1.innerText = '[ postCount: ';
Message too long. Click here to view full text.