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.
importScript('User:Gary King/nominations viewer.js'); // [[Wikipedia:Nominations Viewer]]

/* ========== AddLink Function ========== */
//A helper function to add a button to one of the toolbars in the interface.
//An improved(I hope) version of [[Wikipedia:WikiProject User scripts/Scripts/Add Link|addlilink]].
//[[User:JesseW/sig|JesseW, the juggling janitor]] 05:33, 8 November *2005 (UTC)

function addLink(where, url, name, id, title, key, after){
    //* where is the id of the toolbar where the button should be added;
    //   i.e. one of "p-cactions", "p-personal", "p-navigation", or "p-tb".
    //
    //* url is the URL which will be called when the button is clicked.
    //   javascript: urls can be used to do more complex things.
    //
    //* name is what will appear as the name of the button.
    //
    //* id is the id of the button; it's best to define one.  
    //   Use a prefix to make sure its unique. Optional.
    //
    //* title is the tooltip title that gives a longer description 
    //   of the button; if you define a accesskey, mention it here. Optional.
    //
    //* key is the char you want for the accesskey. Optional.
    //
    //* after is the id or DOM node of the button you want to follow this one. Optional.
    //
    var na = document.createElement('a');
    na.href = url;
    na.appendChild(document.createTextNode(name));
    var li = document.createElement('li');
    if(id) li.id = id;
    li.appendChild(na);
    var tabs = document.getElementById(where).getElementsByTagName('ul')[0];
    if (!after) {
        tabs.appendChild(li);
    } else if (after.cloneNode) {  // looks like a DOM node
        tabs.insertBefore(li,after);
    } else {  // assume this is an ID string
        tabs.insertBefore(li,document.getElementById(after));
    }
    if(id) {
        if(key && title) { ta[id] = [key, title]; }
        else if(key) { ta[id] = [key, '']; }
        else if(title) { ta[id] = ['', title];} 
    }
    // re-render the title and accesskeys from existing code in wikibits.js
    akeytt();
    return li;
}

/*Returns the name of the page. For example, if you were browsing the "[[foo]]" WP page, getPname() would return "foo".*/
function getPname() {
  return mw.config.get('wgPageName').replace(/_/g, ' ');
}

/* ========== Personal links & Clock ========== */
// change personal links and add a clock
document.write('<script type="text/javascript" src="' 
             + 'http://en.wikipedia.org/w/index.php?title=User:Nmajdan/personallinks.js' 
             + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');

// [[User:Dschwen/highlightredirects.js]] - please include this line 
document.write('<script type="text/javascript" src="' 
             + 'http://en.wikipedia.org/w/index.php?title=User:Dschwen/highlightredirects.js' 
             + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');

importScript('User:Lightmouse/monobook.js/script.js');
importScript('User:Pyrospirit/metadata.js'); // Metadata Assessment
importScript('User:Tra/sidebartranslate.js'); //[[User:Tra/sidebartranslate.js]]
importScript('User:Js/ajaxPreview.js')
ajaxPreviewPos = 'bottom';  //Buttons on the bottom, replacing standard buttons.
ajaxPreviewScrollTop = true;
ajaxPreviewExec = function(previewArea){ //code to execute after each preview update
  if (window.setupTooltips) setupTooltips(previewArea)
}
importScript('MediaWiki:Gadget-edittop.js'); // Edit Top
importScript('User:Splarka/dabfinder.js'); // Disambiguation lookup script
importScript('User:Gimmetrow/fixRefs.js'); // Fix References
importScript('User:Dr pda/prosesize.js'); // Prose Size
importScript('User:Splarka/sysopdectector.js'); // Sysop Detector
var showUserGroupSettings = { 'groups': true, 'groupless': true }