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.

Tekijä
Tehhund
Päivittäiset asennukset
0
Asennuskerrat
27
Arvostelut
0 0 0
Versio
17
Luotu
12.8.2019
Päivitetty
18.1.2023
Lisenssi
N/A
Käytössä

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