Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/*
	Keep your own convenience links on hand in the horizontal link menu at the top of the page.

	addTopLink: Inserts a link with the given text and 
	URL to the left of the Logout link at the top right of the page and assigns it the given HTML ID.
	
	Example: To add a link to the New Pages Feed if you're a regular new page patroller,
	
		importScript('User:Largoplazo/toplinks.js');
		addTopLink("pt-newpagesfeed", "NewPagesFeed", "/wiki/Special:NewPagesFeed");
*/

function addTopLink(id, text, url) {
	$("li#pt-logout, li#pt-mycontris, li#pt-mycontris-sticky-header").after($("<li id=\"" + id + "\" class=\"mw-list-item\"><a href=\"" + url + "\"><span class=\"\"></span><span>" + text + "</span></a></li>"));
}