User:Homestar tiger/monobook.js
From Grundy Wiki
Note: After saving, you may have to bypass your browser's cache to see the changes. Mozilla / Firefox / Safari: hold down Shift while clicking Reload, or press Ctrl-Shift-R (Cmd-Shift-R on Apple Mac); IE: hold Ctrl while clicking Refresh, or press Ctrl-F5; Konqueror:: simply click the Reload button, or press F5; Opera users may need to completely clear their cache in Tools→Preferences.
/* <nowiki> */ window.onload = Main; function Main() { addtoolboxlinks(); morelinks(); } /* Adds some useful links to the "toolbox" on the sidebar. */ function addlilink(tabs, url, name, id) { var na = document.createElement('a'); na.href = url; na.id = id; na.appendChild(document.createTextNode(name)); var li = document.createElement('li'); li.appendChild(na); tabs.appendChild(li); return li; } function addtoolboxlinks() { var tb = document.getElementById('p-tb').getElementsByTagName('ul')[0]; addlilink(tb, '/grundy_wiki/Grundy_Wiki:About', 'Thing to work on', ''); addlilink(tb, '/grundy_wiki/Special:Blockip', 'Bye-bye., ''); addlilink(tb, '/grundy_wiki/Flash_Grundy', 'Flashy!',''); addlilink(tb, '/grundy_wiki/Template:MainPageNews', 'Main page news', ''); } /* </nowiki> */