User:Epicgenius/sandbox.js

In this article we will explore the fascinating history of User:Epicgenius/sandbox.js, a topic that has captured the attention of academics, scientists and enthusiasts alike. Over the years, User:Epicgenius/sandbox.js has played a crucial role in society, influencing significant changes in the way we live and understand the world around us. From his humble beginnings to his current impact, User:Epicgenius/sandbox.js has left an indelible mark on history, and in this article we are going to delve into his complex and exciting narrative. Through detailed analysis and an in-depth look at its many facets, we hope to shed light on this topic and offer a comprehensive view for our readers.
$( function() {
    var cats = document.getElementById( 'mw-hidden-catlinks' );
    if ( !cats ) {
        return;
    }
    function addContribsLink () {
		var contribsLink = $( '<span> ')
			.addClass( 'contributorslink-test plainlinks metadata nomobile noprint' )
			.append( $('<a>')
				.addClass( 'external' )
				.attr( 'href',
					'//tools.wmflabs.org/xtools/articleinfo/?wikilang='
					+ mw.config.get( 'wgContentLanguage' ) 
					+ '&wikifam=.wikipedia.org&grouped=on&page=' 
					+ encodeURIComponent( mw.config.get( 'wgPageName' ) ) )
				.text( 'Contributors' )
			);
		contribsLink.insertAfter( $( '#siteSub' ) );
    }
    cats = cats.getElementsByTagName( 'a' );
} );

importStylesheet ('MediaWiki:Gadget-ContributorsHack.css');