Nowadays,
User:Writ Keeper/Scripts/watchlistContribs.js is a topic that has gained great relevance in today's society. The importance of
User:Writ Keeper/Scripts/watchlistContribs.js has been increasing due to various factors that have led to it becoming a topic of general interest. From its impact on people's daily lives to its influence in professional fields,
User:Writ Keeper/Scripts/watchlistContribs.js has become a widely discussed topic in various media. This is why it is crucial to thoroughly analyze the implications and repercussions that
User:Writ Keeper/Scripts/watchlistContribs.js has on today's society to fully understand its scope and importance.
$(document).ready(contribber);
function contribber()
{
if(mw.config.get("wgPageName") === "Special:Watchlist")
{
$('').each(function(index, link)
{
var node = document.createElement("a");
var ind = link.href.search("User_talk");
node.href = link.href.substr(0, ind) + "Special:Contributions/" + link.href.substr(ind+10);
node.title = "Contribs of "+ link.title.substr(10);
link.innerHTML = link.innerHTML + "; ";
node.innerHTML = "<strong>(C)</strong>"
node.target="_blank";
link.parentNode.appendChild(node);
}
);
$('').each(function(index, link)
{
var node = document.createElement("a");
var ind = link.href.search("User:");
node.href = link.href.substr(0, ind) + "Special:Contributions/" + link.href.substr(ind+5);
node.title = "Contribs of "+ link.title.substr(5);
link.innerHTML = link.innerHTML + "; ";
node.innerHTML = "<strong>(C)</strong>"
node.target="_blank";
link.parentNode.appendChild(node);
}
);
}
}