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.
function xRomixReplaceTimeSmall($0,$1) {
//Эта функция вызывается для замены найденного текста
  var s="<small>"+$0+"</small>";
  return s;
}

addOnloadHook(function()
{
   if (wgAction=="view"){ //только для страниц просмотра
     var doc=document.getElementById('bodyContent');
     var s=doc.innerHTML;
     //Регулярное выражение для поиска дат в формате: 
     //09:25, 25 декабря 2007 (UTC)
     var reg = /\d\d\:\d\d\,.+\d\d\d\d\s\(UTC\)/g
     //Выполняем замену
     s=s.replace(reg,xRomixReplaceTimeSmall);
     doc.innerHTML=s;
   }
});