// ======================================== // Replace chat clients. function replace_chat_clients() { var cb = document.getElementById('nodelet_body_row_Chatterbox') .firstChild .nextSibling; cb.removeChild(cb.lastChild); cb.removeChild(cb.lastChild); var container = document.createElement('div'); container.innerHTML = ('' + '' + 'cbhistory' + ' | ' + 'cb60' + ' | ' + 'Others' + '' ); cb.appendChild(container); } replace_chat_clients();