// スレ内の投稿だけを抽出
let nodeList = document.querySelectorAll("section.post-content");
[...nodeList].map(e=>console.log([...nodeList].indexOf(e)+1, e.innerText));