User:Equazcion/Tools

From Wikipedia, the free encyclopedia

[edit] Add a contribs tab to userspace pages

Add this to your monobook.js page:

//adds "contribs" tab to user and user talk pages
if (wgNamespaceNumber == 2 || wgNamespaceNumber == 3) {
    var uname = wgPageName.match(/[^:]*:([^\/]*)/);
    if (uname.length > 1)
        addOnloadHook(function() {
            addPortletLink("p-cactions",
                           "http://en.wikipedia.org/wiki/Special:Contributions/" + uname[1],                        
                           "contribs",
                           "ca-contribs",
                           "Contributions",
                           undefined,
                           document.getElementById("ca-move") || document.getElementById("ca-watch"));
        });
}

[edit] Make diffs easier to spot

Add this to your monobook.css page:

.diffchange {padding: 0px 2px 0px 2px; border: 1px dashed red; margin: 0px 1px 0px 0px}