In today's article we will talk about
User:RPellessier/monobook.js, a topic that has undoubtedly generated interest and debate in society in recent times.
User:RPellessier/monobook.js is an issue that impacts different areas of daily life, from politics to culture, including the economy and human relations. Throughout this reading we will explore in depth the different aspects that revolve around
User:RPellessier/monobook.js, analyzing its implications and consequences in various contexts. Without a doubt,
User:RPellessier/monobook.js is a topic that does not leave anyone indifferent, so it is essential to understand it from different perspectives to have a broader and more enriching vision.
// add navwindows
// ]
mw.loader.load(
'https://en.wikipedia.org/w/index.php?title=User:Lupin/popups.js'
+ '&action=raw&ctype=text/javascript&dontcountme=s');
// Add a "Kate" link to your monobook "personal menu" list at the very
// top of the page.
//
// Indicate where you would like "Kate" to appear:
// pt-userpage, pt-mytalk, pt-preferences,
// pt-watchlist, pt-mycontris, pt-logout
//
gsKateInsertBefore = 'pt-mycontris'; // leave blank to append after "logout"
function KateLink()
{
var user = document.getElementById( 'pt-userpage').firstChild.firstChild.data;
var li = document.createElement( 'li' );
li.id = 'pt-kate';
var a = document.createElement( 'a' );
a.appendChild( document.createTextNode( 'Count' ) ); // eh, the css makes the text lowercase
a.href = 'http://tools.wikimedia.de/~kate/cgi-bin/count_edits?dbname=enwiki&user=' + user;
li.appendChild( a );
if ( ! gsKateInsertBefore ) // append to end (right) of list
{
document.getElementById( 'pt-logout' ).parentNode.appendChild( li );
}
else
{
var before = document.getElementById( gsKateInsertBefore );
before.appendChild( li, before );
}
}
if ( window.addEventListener ) window.addEventListener( 'load', KateLink, false );
else if ( window.attachEvent ) window.attachEvent( 'onload', KateLink );