_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:Writ Keeper/Scripts/prunedLinks.js

This article will address the topic of User:Writ Keeper/Scripts/prunedLinks.js, an issue of great relevance today that has gained great importance in different areas. User:Writ Keeper/Scripts/prunedLinks.js is a topic that has aroused the interest of both experts and society in general, since its impact is significant in various aspects of daily life. Along these lines, the importance of User:Writ Keeper/Scripts/prunedLinks.js, its implications and possible solutions, as well as its influence on current society, will be analyzed in depth. In addition, different perspectives on this topic will be examined, with the aim of offering a comprehensive vision that allows us to better understand its scope and significance.
$(document).ready(function() {
  if (mw.config.get("wgTitle").indexOf("/") != -1 || document.title.indexOf("- History -") != -1)  //no subpages or history
     return;
  if (mw.config.get("wgCanonicalNamespace") == "User" || mw.config.get("wgCanonicalNamespace") == "User_talk") {
     var username = encodeURIComponent( mw.config.get("wgTitle") );
     mw.util.addPortletLink("p-cactions","http://toolserver.org/~tparis/pcount/index.php?name=" + username + "&lang=en&wiki=wikipedia", "Edit count", "ca-editcount", "Edit count");
     mw.util.addPortletLink("p-cactions", mw.config.get("wgServer") + "/w/index.php?title=Special:Log&type=move&user=" + username, "Page moves", "ca-pagemoves", "Page moves by this user");
     mw.util.addPortletLink("p-cactions", mw.config.get("wgServer") + "/w/index.php?title=Special:Log&type=block&page=User:" + username, "Blocks received", "ca-blor", "Blocks received by this user");
     mw.util.addPortletLink("p-cactions", mw.config.get("wgServer") + "/w/index.php?title=Special:Log&type=block&user=" + username, "Blocks given", "ca-blog", "Blocks by this user");
     mw.util.addPortletLink("p-cactions", mw.config.get("wgServer") + "/w/index.php?title=Special:Log&type=protect&user=" + username, "Protections", "ca-protg", "Protections by this user");
     mw.util.addPortletLink("p-cactions", mw.config.get("wgServer") + "/w/index.php?title=Special:Log&type=delete&user=" + username, "Deletions", "ca-delg", "Deletions by this user");
  }
});