MetaFilter number all comments

On MetaFilter.com, adds a comment number like "comment 1 of 30" to each comment.

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
作者
Tehhund
1日のインストール数
0
累計インストール数
30
評価
0 0 0
バージョン
17
作成日
2019/08/12
更新日
2023/01/18
大きさ
2.57KB
ライセンス
不明
対象サイト

Updated to work with a change to MetaFilter's HTML. Used to use

divToHighlight.lastChild.innerHTML += '<span class=\'tehhundUserScriptCommentCount\'>Comment ' + (i+1) + ' of ' + allCommentDivs.length + '. </span>';

now uses

divToHighlight.querySelector('.smallcopy').innerHTML += '<span class=\'tehhundUserScriptCommentCount\'>Comment ' + (i+1) + ' of ' + allCommentDivs.length + '. </span>';