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.
/* This script was inspired by that by User:Lourdes' "AfDs Today" script, at [[User:Lourdes/AfDstarted.js]].
   This script will add a button t othe top bar "AfC Today" that will open a random AfC entry submitted 0 days ago.
   To use the script, add the following line to your common.js file:
 
importScript('User:Hunterm267/AfCtoday.js'); // Linkback: [[User:Hunterm267/AfCtoday.js]]

*/
 
$.when( mw.loader.using( ['mediawiki.util'] ), $.ready ).done( function() {
  mw.util.addPortletLink(
    'p-personal',
    mw.util.getUrl('Special:RandomInCategory/AfC_pending_submissions_by_age/0_days_ago'),
    'AfC Today',
    'pt-specialnew',
    'View a random AFC entry that was submitted in the last 24 hours',
    null,
    '#pt-preferences'
  );
});