mic_none

User:Nardog/SortCentralAuthByEditCount.js Source: en.wikipedia.org/wiki/User:Nardog/SortCentralAuthByEditCount.js

mw.config.get('wgCanonicalSpecialPageName') === 'CentralAuth' &&
mw.loader.using('jquery.tablesorter', function sortCentralAuthByEditCount() {
	mw.hook('wikipage.content').add($content => {
		let $table = $content.find('.mw-centralauth-wikislist').has('td');
		if (!$table.length) return;
		$table.tablesorter().data('tablesorter').sort([{ 4: 'desc' }]);
	});
});