Greasy Fork is available in English.

MetaFilter number all comments

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

Aŭtoro
Tehhund
Ĉiutagaj instaloj
0
Tutaj instaloj
27
Ratings
0 0 0
Versio
17
Kreita
2019/08/12
Ĝisdatigita
2023/01/18
Licenco
N/A
Aplikiĝas al

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>';