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 initmycustomtoolbar()
{
    var mycustomtoolbar=document.createElement('div');
    mycustomtoolbar.setAttribute("id", "mycustomtoolbar");
    mycustomtoolbar.setAttribute("style", "clear:both;");

    var tb = document.getElementById('toolbar');
    if (tb == null)
        var tb = document.getElementById('editform');
    if (tb == null) {
        return;
    }
    tb.parentNode.insertBefore(mycustomtoolbar, tb);

    mycustomtoolbar.innerHTML+='<a href="javascript:srShowHide()" id="SearchIcon"><img alt="Search/Replace" src="//upload.wikimedia.org/wikipedia/commons/1/12/Button_find.png" border="0"></a>';
    mycustomtoolbar.innerHTML+='<a href="javascript:srToggleCase()"><img alt="Toggle case" src="//upload.wikimedia.org/wikipedia/commons/1/12/Button_case.png" border="0"></a>';
    mycustomtoolbar.innerHTML+='<a href="javascript:format()">F</a>';
    mycustomtoolbar.innerHTML+='<a href="javascript:defaultsort()">D</a>';
    mycustomtoolbar.innerHTML+='<a href="javascript:fixInfobox()">FI</a>';
}

$(initmycustomtoolbar);