User:WikiWikiWayne/common.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
![]() | The accompanying .css page for this skin is at User:WikiWikiWayne/common.css. |
/* Puts Semi Automated Peer Review link next to log-in/log-out link at top of page */
mw.loader.load('//en.wikipedia.org/w/index.php?title=User%3AAndyZ%2Fpeerreviewer.js&action=raw&ctype=text/javascript'); // [[User:AndyZ/peerreviewer.js]]
/* Adds Teahouse Badges to Wikilove */
importScript("User:Ocaasi/WikiLoveinstallscript.js");
/* Puts Go to top link at bottom of each page */
importScript('User:Numbermaniac/goToTop.js'); // [[User:Numbermaniac/goToTop.js]]
/* Puts a Highlight duplicate links link on left side of each page */
importScript('User:Ucucha/duplinks.js'); // [[User:Ucucha/duplinks]]
/* Puts a reFILL link on the left side of each page */
mw.loader.load( "https://meta.wikimedia.org/w/index.php?title=User:Zhaofeng_Li/Reflinks.js&action=raw&ctype=text/javascript" );
/* Adds Expand citations link to left side of each page */
importScript('User:Smith609/toolbox.js');
/* Puts a Pending changes link at top right of each page */
var head = document.getElementById('mw-head').getElementsByTagName('ul')[0];
var li = document.createElement("li");
var a = document.createElement("a");
a.appendChild(document.createTextNode("Pending changes"));
a.href = "https://en.wikipedia.org/wiki/Special:PendingChanges";
li.appendChild(a);
head.insertBefore(li, head.childNodes[9]);
/* Adding one click archiver */
/* User:Technical_13/Scripts/OneClickArchiver */
importScript( 'User:Technical_13/Scripts/OneClickArchiver.js' );// Backlink: [[User:Technical_13/Scripts/OneClickArchiver]]
/* Adding SmartLinks */
if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) > -1 ) {
importScript('User:V111P/js/smartLinkingLoader.js'); // [[User:V111P/js/smartLinkingLoader.js]]
}
/* Adds Dabfinder links to toolbox */
/* User:Meteor sandwich yum/dabfinder.js */
importScript( 'User:Meteor sandwich yum/dabfinder.js' );// Backlink: [[User:Meteor sandwich yum/dabfinder.js]]
/* Adds parent and child sort to HotCat */
window.hotcat_use_category_links = true;
/* Adds AutoEd to Tools */
importScript('Wikipedia:AutoEd/complete.js');
/* Disables auto-launch of diff */
autoEdClick = false;