- https://bg.wikipedia.org/w/index.php?title=MediaWiki:Common.css&action=history
- https://bg.wikipedia.org/w/index.php?title=MediaWiki:Gadget-EditToolbar-core.js&action=history
Open the JS console and execute the code:
```
lang=js
if (
mw.config.get('wgAction') === 'history' &&
$.inArray( mw.config.get( 'wgCanonicalNamespace' ), [ 'MediaWiki', 'Module' ] ) !== -1
) {
$.each( $( 'ul#pagehistory > li' ), function() {
if ( $( this ).find( 'a.mw-userlink' ).text() === 'Iliev') {
var comment = $( this ).find( 'span.comment' );
if ( comment.html() ) {
var commentHtml = comment.html().split( '|' );
comment.html(
$.trim( commentHtml[0] ) +
': <a href="' +
$.trim( commentHtml[1] ) +
'" target="_blank">' +
$.trim( commentHtml[2] ).slice( 0, -1 ) +
'</a>)'
);
}
}
});
}
```