User:Galobtter/scripts/displayContributions.js

Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/* Derived from User:Mvolz/displayContributions.js */
$.when($.ready, mw.loader.using( 'mediawiki.api' )).then( function() {
    ( new mw.Api() ).get( {
        action: 'query',
        meta: 'userinfo',
        uiprop: 'editcount'
    } ).then( function( result ) {
    	$( '#pt-mycontris' ).append( ' (' + result.query.userinfo.editcount + ')' );
    } );
} );