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.
/* Adds an "XTools EC" link to your personal tools.
   Install by placing this in [[Special:MyPage/common.js]] or importing it.
*/

$.when( mw.loader.using(['mediawiki.util']), $.ready ).done(function () {
  mw.util.addPortletLink(
    'p-personal',                                   // add to Personal tools
    'https://xtools.wmcloud.org/ec/en.wikipedia',   // href
    'XTools EC',                                    // link label
    'pt-xtools-ec',                                 // id
    'View your XTools Edit Counter',                // tooltip
    null,                                           // accesskey (none)
    '#pt-AntiVandal'                                // insert before Preferences
  );
});