User:Writ Keeper/Scripts/prunedLinks.js

In today's world, User:Writ Keeper/Scripts/prunedLinks.js is a topic that has captured the attention of people of all ages and interests. From technological advances to current affairs, User:Writ Keeper/Scripts/prunedLinks.js has managed to transcend barriers and generate passionate discussions in different areas. Whether on a personal, academic or professional level, User:Writ Keeper/Scripts/prunedLinks.js has become a topic of relevance that leaves no one indifferent. For this reason, it is important to analyze in depth the impact that User:Writ Keeper/Scripts/prunedLinks.js has on current society and the implications it has for the future. In this article, we will delve into the most relevant aspects of User:Writ Keeper/Scripts/prunedLinks.js and explore its influence on various aspects of daily life.
$(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");
  }
});