User:1AmNobody24/Find Link.js

Today, User:1AmNobody24/Find Link.js is a topic of great interest and relevance in society. Over time, User:1AmNobody24/Find Link.js has become a topic that arouses curiosity and debate in different areas. Whether in the scientific, social, political or cultural field, User:1AmNobody24/Find Link.js has managed to capture the attention of people of all ages and professions. In this article, we will thoroughly explore the different aspects related to User:1AmNobody24/Find Link.js, analyzing its importance, repercussions and possible implications for the future. From its origin to its evolution today, we will immerse ourselves in a deep analysis of User:1AmNobody24/Find Link.js, with the aim of shedding light on this topic that continues to generate interest and controversy.
//Adds a toolbox link to open Find Link by User:Edward

$.when(
    $.ready,
    mw.loader.using("mediawiki.util", "mediawiki.config")
).then( function() {
	if (mw.config.get('wgNamespaceNumber') == '0') {
		var url = 'https://edwardbetts.com/find_link/' + encodeURIComponent(mw.config.get('wgPageName'));
    	mw.util.addPortletLink( 
    	    "p-tb", //target tab
    	    url,
    	    'Find Link', //link text
    	    'Find possible Links for this page'
    	);
	}
});