_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:1AmNobody24/Find Link.js

In today's world, User:1AmNobody24/Find Link.js has become a topic of great interest and relevance in various areas. On both a personal and professional level, User:1AmNobody24/Find Link.js has captured the attention of experts and enthusiasts, generating significant debates, research, and advances. With its palpable influence on modern society, User:1AmNobody24/Find Link.js has marked a before and after in the way we approach different aspects of daily life. In this article, we will thoroughly explore the implications and ramifications of User:1AmNobody24/Find Link.js, analyzing its impact on the world today and possible future prospects.
//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'
    	);
	}
});