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.
//Скрипт подчеркивает имена пользователей жирным 
var xRomix_bold = new function(){
 
this.onLoad = function(){
//В этот момент страница уже загружена

var anchorTags = document.getElementsByTagName("a");
for (var i = 0; i < anchorTags.length ; i++)
{
  var ob=anchorTags[i];
  var h=ob.href;
  if (h.indexOf("%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:")>=0){
    s=ob.innerHTML; 
	ob.innerHTML='<b>'+s+'</b>';
  }
} 
}//function
 
}//obj

//установка функции-перехватчика 
if (doneOnloadHook) xRomix_bold.onLoad()
addOnloadHook(xRomix_bold.onLoad)