Wikipedia:WikiProject User scripts/Scripts/User Contribs Tabs

This is an old revision of this page, as edited by Minesweeper.007 (talk | contribs) at 22:52, 6 March 2007 (Undid revision 113173506 by Darkest Hour (talk) in the name of G0D!). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

//


// by:[[User:Darkest Hour]] 
 
addOnloadHook(function() {
  if (wgTitle.indexOf("/") != -1 || document.title.indexOf("- History -") != -1)  //no subpages or history
     return;
  if (wgCanonicalNamespace == "User" || wgCanonicalNamespace == "User_talk") {
     var username = encodeURIComponent( wgTitle );
     addPortletLink("p-cactions", wgServer + "/wiki/Special:Contributions/" + username, "contribs", "ca-contrib", "User contributions");
     addPortletLink("p-cactions", "http://tools.wikimedia.de/~interiot/cgi-bin/Tool1/wannabe_kate?username=" + username + "&site=en.wikipedia.org", "count", "ca-editcount", "Edit count from Interiot's Tool1");
     
  }
});

//